본문 바로가기

unity3d7

magicaVoxel shortcut & command 출처: https://ephtracy.github.io/index.html?page=mv_controlsShortcutmacOS : Use Command instead of CtrlKeyCommandModifier>> ConsoleTABactivate consoleF6 / 6screenshot+CTRL : for whole window>> CameraRButtonrotate camera=LButton+MMButtonmove camera focusRButton+Spacemove camera focus=WASDQE+SpaceRButton+Xset camera focusRButton+Knavigate to 90 degree viewRButton+Rulersnap camera angle to multiples .. 2017. 11. 24.
visual studio 2017 shortcut 출처: http://visualstudioshortcuts.com/2017/ 한줄 복사 : ctrl + c한줄 cut : ctrl + x라인 이동 : alt + 화살표 (이클립스와 동일)주석처리 : ctrl + k, c주석해제 : ctrl + k, u editor 파일간 이동 : ctrl + alt + page up/page down 2017. 11. 23.
c# window output using System.Diagnostics; namespace ConsoleApp2 { class Program { static void Main(string[] args) { Debug.WriteLine("A"); } }} 2017. 11. 22.
namespace could not be found unity3d -> visual studio 2017 에서내가 만들 임의 class의 namespace를 다른 파일에서 using 하지 못하는 이슈 발생 > 해결 (시도)1. unity3d, studio 껐다 켜기2. Asset 최상단 위치에 C# 파일만들어서 namesapce 적용해보기3. studio 우측의 class view에서 namespace 나오는지 확인하기!!4. basic Visual studio c# 프로젝트 생성해서 테스트하기.(unity3d가 아닌 환경에서) 2017. 11. 22.
Vector3 MonumentValley를 unity3d로 해부하자 https://www.youtube.com/watch?v=ivfnyiTfLJ4 Vector3print(Vector3.forward); // 0, 0, 1print(Vector3.right); // 1, 0, 0print(Vector3.back);// 0, 0, -1print(Vector3.left); // -1, 0, 0 // characterprint (transform.position);// 0, 1, 2print (transform.up);// 0, 1, 0// yprint (transform.right);// 1, 0, 0// xprint (transform.forward);// 0, 0 ,1// z player는 x,y,z 좌표계 floor는.. 2017. 11. 16.
Unity 5 - Roll a Ball game Unity 5 - Roll a Ball game - 1 of 8: Setting up the Game - Unity Official Tutorials https://unity3d.com/kr/learn/tutorials/s/roll-ball-tutorial https://www.youtube.com/watch?v=W_fAidYRGzs Name Wall Player Pick Up GameObject Cube Cube Cube 기본 Component Transform Transform Transform Cube (Mesh Filter) Cube (Mesh Filter) Cube (Mesh Filter) Box Collider Box Collider Box Collider - Is Trigger Is Trig.. 2017. 11. 12.
안드로이드 빌드 버그 상태: android로 빌드할때, 문제1메시지: detecting current sdk platform version unable to list target해결: sdk의 tools 폴더를 다운그레이해서 다시 받기출처: http://answers.unity3d.com/questions/1320150/unable-to-list-target-platform.html 상태: android로 빌드할때, 문제2, player setting 필요한듯메시지: bundle Identifier has been set up correctlyplease set the bundle identifer in the player settings the value must follow the convention 'com.yourCo.. 2017. 10. 28.