Schlagwort: Unity

  • Unreal Developement Kit

    Recently I learned that the Unreal Developement Kit (or UDK) is a free toolset for developing non-commercial games or simulations and it also comes without restrictions. „What is UDK?“ quoted from the UDK website: „UDK is Unreal Engine 3 – a complete professional development framework. All the tools you need to create great games, advanced…

  • Unity localization

    Unfortunately Unity doesn’t support a native localization system. I tried using Resources (.resx) from Visual Studio in Unity, but it couldn’t be initialized: MissingManifestResourceException: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure „Irrelevant.Assets.Test.resources“ was correctly embedded or linked into assembly „e46f0a679b15cf745b8e1be9f452390f“ at compile time, or that all…

  • Unity terrain tutorials

    Here is a great tutorial series about creating terrains in Unity. And one tip: using a heightmap generator like HME or Terragen classics saves a lot of time. Both tools are free (Terragen for non-commercial use only) and both can generate and smooth heightmaps automatically. These tools are also great for generating skyboxes. There are…

  • Unity realtime strategy camera

    A simple camera script for Unity simulating the behaviour of common realtime strategy games. It supports level bounds restriction, mouse scrolling and dragging, keyboard scrolling and camera panning on zooming in closly to the ground.

  • Unity Game Developement Tool

    Unity is a game developement toolset with a mighty, comfortable „wysiwyg“ editor allowing rapid prototyping. The Unity editor supports importing all kind of assets, a world editor and several scripting languages (also C#) based on the cross-plattform .NET library Mono. There exists a free version of Unity, although it misses a few features like real-time…