일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- input system
- 유니티
- 앱 배포
- 오큘러스
- 개발일지
- meta
- 유니티 Json 데이터 연동
- 팀프로젝트
- 유니티 UI
- 멀티플레이
- 개발
- 팀 프로젝트
- 포트폴리오
- HAPTIC
- VR
- OVR
- CGV
- 오브젝트 풀링
- 연습
- 모작
- 길건너 친구들
- XR
- 유니티 GUI
- Photon Fusion
- Oculus
- 드래곤 플라이트 모작
- ChatGPT
- 가상현실
- 드래곤 플라이트
- meta xr
- Today
- Total
목록C#프로그래밍 (49)
EasyCastleUNITY
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..
using System; using System.Data.SqlTypes; namespace HelloWorld { internal class Program { static void Main(string[] args) { string weaponName = "God Butcher"; string weaponType = "Sword"; float damage = 4.2f; int minDamage =2; int maxDamage =4; float attackSpeed = 1.40f; Console.WriteLine(weaponName); Console.WriteLine(weaponType+"\n"); Console.WriteLine("{0}",damage); Console.WriteLine("Damage ..
using System; using System.Data.SqlTypes; namespace HelloWorld { internal class Program { static void Main(string[] args) { string weaponName = "King's Sword of Haste"; string weaponType = "Magic Sword"; float damage = 4.2f; int minDamage =2; int maxDamage =4; float attackSpeed = 1.40f; int rndMP = 3; Console.WriteLine(weaponName); Console.WriteLine(weaponType+"\n"); Console.WriteLine("{0}",dama..
using System; using System.Data.SqlTypes; namespace HelloWorld { internal class Program { static void Main(string[] args) { string weaponName = "Marauder Axe"; string weaponType = "Axe"; float damage = 26.6f; int minDamage =15; int maxDamage =26; float attackSpeed = 1.30f; Console.WriteLine(weaponName); Console.WriteLine(weaponType+"\n"); Console.WriteLine("{0}",damage); Console.WriteLine("Damag..
using System; using System.Data.SqlTypes; namespace HelloWorld { internal class Program { static void Main(string[] args) { string weaponName = "Heavy Axe"; string weaponType = "Axe"; float damage = 17.5f; int minDamage =10; int maxDamage =17; float attackSpeed = 1.30f; Console.WriteLine(weaponName); Console.WriteLine(weaponType+"\n"); Console.WriteLine("{0}",damage); Console.WriteLine("Damage P..
using System; using System.Data.SqlTypes; namespace HelloWorld { internal class Program { static void Main(string[] args) { string weaponName = "Hand Axe"; string weaponType = "Axe"; float damage = 3.2f; int minDamage =2; int maxDamage =3; float attackSpeed = 1.30f; Console.WriteLine(weaponName); Console.WriteLine(weaponType+"\n"); Console.WriteLine("{0}",damage); Console.WriteLine("Damage Per S..