지난 글에서 유니티에 대해서 간단하게 알아보았습니다. 이번에는 유니티 설치 방법에 대해서 알아보겠습니다. 유니티코리아를 들어간 후 시작하기 버튼을 눌러줍니다. (링크는 여기) 시작하기 버튼을 클릭하면 다음과 같이 3개의 라이센스가 반겨줍니다. 전시간에 말했던 장점이 여기있네요. 3번째 Personal라이센스는 무료입니다. 하지만 무료버전은 게임 제작후 실행시 나오는 유니티 워터마크 제거가 불가능합니다. $100,000 이상의 수익을 내면 유료로 구매를 해야하지만, 그정도 벌면 이정도는 사야죠 근데 "나는 돈이 많아서 죽어도 무료는 쓰기 싫다!" 하시는분들은 유료 라이센스 사주시면 됩니다. 자 그럼 Personal 무료 체험을 누르시면 이런 창이 뜰겁니다. 약관에 동의하신 후 "Windows 용 설치 프로..
Last post, we learned about project base files. Now we'll create app in 'repo' folder. Run Anaconda Prompt, go to 'repo' folder we created and activate virtual environment you created. Now we create an app using 'manage.py'. Type this :1python manage.py startapp 'name' And then, the app was created.There are 4 python files except __init__.py and tests.py.admin.py : This file is literally adminis..
Last post, we created project folder named 'conf'. There are 4 python files.__init__.py settings.pyurls.pywsgi.py__init__.py is a file required by Python. Python requires initialization when reading modules, this initialization is done in this file. settings.py is a file that contains all the website settings. This is where we register any applications we create, the location of our static files..
