2017년 8월 1일 화요일

Godot Engine

Godot Engine
-> https://godotengine.org/



Godot is an advanced, feature-packed, multi-platform 2D and 3D open source game engine.



License
-> MIT license
Godot is completely free and open source under the very permissive MIT license. No strings attached, no royalties, nothing. Your game is yours, down to the last line of engine code.



Features
1. 2D Game Dev
2. 3D Game Dev
3. Animation Editor
4. GD Script ( Python-like scripting language )
5. Multi Platform Editor

  • OS X
  • Linux
  • FreeBSD
  • OpenBSD and Haiku

6. Multi Platform Deploy
  • Mobile platforms: iOS, Android, BlackBerry OS
  • Desktop platforms: Windows, OS X, Linux, *BSD, Haiku
  • Web Platforms: HTML5 (via Emscripten)

2017년 7월 12일 수요일

VLD( Visual Leak Detector )

Visual Leak Detector
-> https://vld.codeplex.com/


Visual Leak Detector is a free, robust, open-source memory leak detection system for Visual C++.



License
-> GNU Lesser General Public License (LGPL)



+ Do
1. Download
2. Install
3. Open VS Project
4. Project properties -> C/C++ -> Additional Include Directories
 - Add Visual Leak Detector Include Folder


5. Project properties -> Linker -> additional library directories
 - Add Visual Leak Detector lib folder
6. Select between Win32/Win64 folder
7. Add code to main.cpp
#if defined( DEBUG ) || defined( _DEBUG )
      #include <vld.h>
#endif