전체 글 20

EarthMap

Goals - 지구 지도를 완성한다. Daily더보기2024 / 10 할당15컨셉 및 아이디어 정리, EarthMap subject initialize- IDea & Step1. 구체 지도를 생성한다.시각지구를 생성하고, 자전축에 따라 천천히 회전시킨다.배경, 조명을 어울리도록 바꾼다.조작지구 중심을 중심으로 Main camera 가 회전하도록 한다.마우스 클릭을 통해, 해당 지점이 화면 중앙으로 오도록 할 수 있다.2. 지도 위에 영역을 표시한다.시각지구 위에 특정 영역을 생성하고 시각적인 표시(경계선 및 오브젝트) 표시를 할 수 있도록 만든다.조작선택 영역, 오브젝트에 따라 다른 설명값이 나올수 있게 만든다. (특정 수치, 값이 바뀌도록 만든다.)3.  UI.시각테두리에 UI를 추가하여  설명문이 나..

Project/parrot713 2024.10.15

Colab - 간단한 글자 이미지 생성

Stamp 이미지 생성https://fontmeme.com/  구글 드라이브에 Fonts 폴더 생성 후 폰트파일Colab    feat gptfrom PIL import Image, ImageDraw, ImageFontimport osfrom google.colab import driveimport warningswarnings.filterwarnings("ignore", category=DeprecationWarning)drive.mount('/content/drive')folder_path = "/content/drive/My Drive/StampImages/"if not os.path.exists(folder_path): os.makedirs(folder_path)def create_grade..

Experiment 2024.06.01

Unity - FPS microgame code 분석

Goals - Unity / FPS microgame code를 분석한다FPS microgame / Assets / FPS / Scripts / AI / DetectionModule.cs EnemyController.cs  EnemyManager.cs EnemyMobile.cs  EnemyTurret.cs FollowPlayer.cs  NavigationModule.cs PatrolPath.cs Editor / MiniProfiler.cs PrefabReplacerEditor.cs  ShaderBuildStripping.cs UITableEditor.cs  Game / Actor.cs AudioUtility.cs  ConstantRotation.cs DebugUtility.cs  Event.csTGame..

Unity Learn - Creative Core Pathway - Final Submission

Goals - 구상한 아이디어의 프로토타입을 구현IDea  랜덤요소 + 전투 시뮬레이션, 게임이라기보다는 구경하는 느낌의 프로젝트의 프로토타임 버전, 플레이 가능한 게임이라기 보단, 동영상 마냥 감상하는 것.Details화면 구성랜덤 요소와 시뮬레이션은 한 화면에 들어와야 함, 시점 변경 가능은 F (추후 고려)Y  첫 Start 화면만 추가?   첫 시점 애니메이션 없이 바로 main 화면부터 시작Y  각 오브젝트에 간단한 스펙 표시  랜덤 요소간소화, 랜덤한 숫자를 뽑는 것으로 구현Y  카드를 뽑는 간단한 애니메이션은 구현 할 것, 중앙에서 양쪽으로 카드를 나누어줌, 셔플시뮬레이션서로 만나면 공격하는 유닛, 그 외의 동작은 생략Y  유닛은 한 종류 내지 두 종류만 구현, 단일 종족으로 색상만 구별한다..

Unity learn - Make a flag move with shadergraph

Work Onhttps://learn.unity.com/project/make-a-flag-move-with-shadergraph Make a Flag Wave with Shadergraph - Unity LearnIn this project, you will learn how to create a shader to make a flag wave utilizing the Time, Sine and UV nodes to give the flag a wave effect.learn.unity.com  Introduction to ShaderGraph버전이 달라서 맞는 결과인지는 모르겠으나, alpha채널이 존재하지 않아, RGB 채널을 더하여 사용하였다. 물론 여기에서는 한 채널만 넣어도 될 것 같으나, 그..

Study/Unity learn 2024.05.03