일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오큘러스
- 팀프로젝트
- OVR
- 팀 프로젝트
- 드래곤 플라이트
- 개발일지
- 멀티플레이
- 포트폴리오
- ChatGPT
- VR
- 오브젝트 풀링
- 모작
- 앱 배포
- 유니티 GUI
- input system
- 연습
- 길건너 친구들
- meta xr
- 가상현실
- Photon Fusion
- 유니티 UI
- 드래곤 플라이트 모작
- HAPTIC
- Oculus
- 유니티 Json 데이터 연동
- meta
- CGV
- 개발
- XR
- 유니티
- Today
- Total
목록분류 전체보기 (190)
EasyCastleUNITY
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..
using System; using System.Data.SqlTypes; namespace HelloWorld { internal class Program { static void Main(string[] args) { string armorName = "Harlequin Crest"; string armorType = "Magic Helm"; int minDefense = 21; int maxDefense = 24; int rndMP = 3; Console.WriteLine(armorName); Console.WriteLine(armorType + "\n"); Console.WriteLine("{0}-{1}\nArmor", minDefense, maxDefense); Console.WriteLine(..
using System; using System.Data.SqlTypes; namespace HelloWorld { internal class Program { static void Main(string[] args) { string armorName = "Veil of Steel"; string armorType = "Magic Helm"; int minDefense = 21; int maxDefense = 24; int rndMP = 3; Console.WriteLine(armorName); Console.WriteLine(armorType + "\n"); Console.WriteLine("{0}-{1}\nArmor", minDefense, maxDefense); Console.WriteLine("\..
using System; using System.Data.SqlTypes; namespace HelloWorld { internal class Program { static void Main(string[] args) { string weaponName = "Longsword"; string weaponType = "Magic Sword"; float damage = 17.5f; int minDamage =8; int maxDamage =17; float attackSpeed = 1.40f; int rndMP = 2; string Crafter = "Blacksmith"; int level = 1; Console.WriteLine(weaponName); Console.WriteLine(weaponType..