일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 길건너 친구들
- 앱 배포
- 오큘러스
- 연습
- 유니티 Json 데이터 연동
- Oculus
- Photon Fusion
- 개발일지
- meta xr
- HAPTIC
- 드래곤 플라이트
- 포트폴리오
- 개발
- 유니티
- 드래곤 플라이트 모작
- 팀 프로젝트
- 가상현실
- XR
- 유니티 GUI
- 유니티 UI
- 오브젝트 풀링
- OVR
- 모작
- ChatGPT
- VR
- CGV
- 팀프로젝트
- meta
- 멀티플레이
- input system
- Today
- Total
목록분류 전체보기 (190)
EasyCastleUNITY
마린이 저글링 공격, 메딕이 마린 회복 저글링 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearnDotnet { internal class Zergling { //멤버 변수 int maxHp = 35; int hp; int damage = 5; float moveSpeed = 2.612f; int x, y; //위치 //기본생성자 public Zergling() { hp = maxHp; Console.WriteLine("저글링이 생성되었습니다."); Console.WriteLine("저글링 생명력: {0}", this.hp..
무기 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearnDotnet { internal class Weapon { //열거형식 정의 public enum eWeaponType { Longsword, Shortsword, Bow, Axe } //멤버 변수 int damage; int price; eWeaponType weaponType; //무기의 공격력 및 가격 랜덤 설정 Random randomDamage = new Random(); Random randomPrice = new Random(); //생성자 public W..
TerranCommandCenter using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearnDotnet { internal class TerranCommandCenter { //열거형식 정의 enum eState { Land,Liftoff } //멤버 변수(데이터) int maxHp = 1500; int hp; eState state; //상태 //생성자 메서드 public TerranCommandCenter() { state = eState.Land; hp = maxHp; Console.WriteLine("커맨드 센터가 생성되..
using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { //소지골드: 500골드 //장검: 100골드 //단검: 80골드 //활: 120골드 //구매 하고자 하는 아이템 이름을 입력하세요. : 장검 //장검을 구매 했습니다. (-100골드) //소지골드 : 400골드 //if문으로도 작성해보고 //switch문으로도 작성해보자 int playerGold = 500; Console.Write("구매 하고자 하는 아이템 이름을 입력하세요. :"); string weapon = Console.ReadLine(); switch (weapon) { case "장검": { playerGold -= ..
1번 using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { float sumHeight = 0; float mostBig = 0; float mostSmall = 300; for (int i = 0; i 300 || height < 50) { Console.WriteLine("계산범위를 초과하였습니다"); break; } ..
using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { for(int i=0; i
using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { Console.Write("문자를 입력하세요:"); int word = Console.Read(); for(int i=0; i