728x90
728x90
Curated Assets from Unity Affiliates Explore assets curated by our affiliates that can help you quickly prototype games, including AR/VR, worldbuilding, sci-fi, RPG, and much more. 1. Make open world action game faster Creating a wizard-based or sci-fi open world action game can be a fantasitcal adventure. Here are some assets recommended by Code Monkey to help you build and ship your game faste..
Unity 2023 Summer sales in 3rd week!! Go to Unity asset store sale promotion Link 에셋스토어 여러분의 작업에 필요한 베스트 에셋을 찾아보세요. 유니티 에셋스토어가 2D, 3D 모델, SDK, 템플릿, 툴 등 여러분의 콘텐츠 제작에 날개를 달아줄 다양한 에셋을 제공합니다. assetstore.unity.com Publisher of the Week - Dungeon Mason Until August 17th, all of publisher Dungeon Mason's assets will be available at 50% off, and RTS Mini Legions Fantasy Polyart's assets will be free!! D..
The Dev Days of Summer sale started this week Approximately 100 of the following Affiliate partner's favorites are at a 50% discount!! Various genre of Asset, such as FPS, Horror, RPG, Zombie, Sci-fi, Multiplayer, Fantasy, Anime, etc.. is waiting for you!! ★The Dev Days of Summer sale promotion★ is updated every Wednesday and runs until 1 a.m. on August 18, 2023, KST ★The Best of the Dev Days of..
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CheckPoint04 { class Army { protected int _HP; protected int _MP; protected int _Speed; protected int _Attack; public virtual void Run() { Console.Write("{0}의 속도로", _Speed); } public virtual void Attack() { Console.WriteLine(); if (this is Healer) { Console.Write("[마법 공격력..