지난 글에서 유니티에 대해서 간단하게 알아보았습니다. 이번에는 유니티 설치 방법에 대해서 알아보겠습니다. 유니티코리아를 들어간 후 시작하기 버튼을 눌러줍니다. (링크는 여기) 시작하기 버튼을 클릭하면 다음과 같이 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..
유니티는 주로 저사양/소규모 게임에 적합한 게임 개발 엔진입니다. Unity2 버전까지는 PC 플랫폼만 지원했으나 2010년 출시된 Unity3 부터는 기존의 PC 플랫폼뿐만 아니라 IOS, Android같은 모바일 플랫폼, 콘솔 게임기 등을 지원하게되면서 2012년 Unity4 이후 유니티 엔진으로 개발된 게임들이 급격하게 늘어났습니다. 2017년에 출시되어 많은 스트리머들이 플레이한(울은) CupHead 3D에셋을 사용했지만 2D시점으로 제작하여 입체감을 이용한 퍼즐게임 Monument Valley 전세계적으로 유명한 하스스톤 등이 유니티로 제작된 게임입니다 이처럼 Unity는 기본적으로는 2D를 제작할때 많이 사용하지만 그렇다고 3D의 지원이 미흡한것도 아닙니다. 그리고 유니티의 장점은GUI가 아주..
1. Set up Python and Virtual environment I'm going to set up Anaconda3. The reason why I set up it is Anaconda has a lot of python packages and can create my own virtual environment. Why I create virtual environment is that I can manage project easily. In other words, We can set up virtual environments for each project. We can download anaconda in this site :https://www.anaconda.com/distribution..
To be brief(?), Django is a Full-stack web framework built on Python. 간단히 말하자면 장고는 파이썬 기반으로 만들어진 풀스택 웹 프레임워크입니다. The reason why I use and write about this is actually that I recently started learning Python.제가 장고를 사용하는 이유와 이 글을 쓰는 이유는 사실 최근에 파이썬을 배우기 시작해서입니다. As you can see, Python is one of the most used programming languages due to its ease of learning, design, and flexibility, making it one o..