일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- XR
- 연습
- CGV
- 개발
- 드래곤 플라이트
- HAPTIC
- 유니티 UI
- 가상현실
- meta
- 멀티플레이
- Photon Fusion
- 길건너 친구들
- Oculus
- 포트폴리오
- meta xr
- 팀 프로젝트
- 모작
- 유니티
- 앱 배포
- 팀프로젝트
- 유니티 Json 데이터 연동
- OVR
- VR
- 드래곤 플라이트 모작
- 오브젝트 풀링
- 유니티 GUI
- 개발일지
- input system
- ChatGPT
- 오큘러스
- Today
- Total
목록C#프로그래밍 (49)
EasyCastleUNITY
using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { string sniffing; for (int i = 0; i < 5; i++) { if(i%2 == 0) // i+1이 대상이기에 이런식으로 짬 { sniffing = "홀"; } else { sniffing = "짝"; } Console.WriteLine("{0}={1}", i + 1, sniffing); } } } }
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) { int count = 0; for (int i = 0; i < 3; i++) { Console.WriteLine("쌩생이를 했습니다"); count += 2; } Console.WriteLine("---------------------------------"); Console.WriteLine("줄넘기를 총 {0}회 했습니다", count); } } }
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) { for (int i = 0; i < 5; i++) { Console.WriteLine("줄넘기를 했습니다"); } } } }
using System; namespace LearnDotnet { internal class Program { //열거형식(eTribes) 정의 enum eTribe { Terran = 1, Protos = 2, Zergling = 3 } static void Main(string[] args) { Console.Write("(1.테란,2.프로토스,3.저그)다음 종족 중 하나를 선택해주세요:"); string input = Console.ReadLine(); //항상 문자열 값으로 만들어줌 // Console.WriteLine("당신이 입력한 값은: {0}입니다",input); //문자열 -> 정수 -> 열거형 int intTribe = Convert.ToInt32(input); eTribe selec..
using System; namespace LearnDotnet { internal class Program { enum eItem { Weapon=0, Armor=2, Potion=4 } static void Main(string[] args) { //무기, 방어구, 물약 상수로 정의 const int Weapon = 0; const int Armor = 2; const int Potion = 4; //열거형식 변수를 정의하고 변수의 값을 할당 후 출력 eItem sword = eItem.Weapon; Console.WriteLine("sword's Type: {0}",sword); //또한 열거형식 멤버를 정수형으로 캐스팅하고 int intItem = (int)sword; Console.WriteLi..
using System; using System.Data.SqlTypes; namespace HelloWorld { internal class Program { static void Main(string[] args) { //------Marine's Information string unitName1 = "Marine"; int maxhitPointsMarine = 40; int hitPointsMarine = maxhitPointsMarine; int groundAttackMarine = 6; //------Zergling's Information string unitName2 = "Zergling"; int maxhitPointsZerg = 35; int hitPointsZerg = maxhitPo..