Research & Development for 3D & the Web

Unity

Unity Exporting Tutorial

by on Sep.25, 2011, under Unity

Great Unity Exporting Tutorial

https://github.com/drojdjou/J3D/wiki/Unity-exporter-tutorial

Worth checking this out if you’re after some good information on exporting with the Unity game engine. Thanks to the GitHub wiki editors.

Leave a Comment :Exporting, Unity more...

Using the ‘Terrain Editor’ plugin tool for Unity

by on Jul.18, 2010, under Unity

This information is all in reference to this tool found on the Unity site for making neat looking terrains easy in Unity. http://unity3d.com/support/resources/unity-extensions/terrain-toolkit Pretty much, watch this for all you need... http://www.youtube.com/watch?v=YnO9RtarzHE&ytsession=ihfWIlY60ByYRAWsoH9xkpz2Uyb9I9d1j5hwfWZW_6qaEZU6HlZSkzT5w2O9xqqVnKBk6LXWs9HI24-rkazi1pJLRbQgkRPeaUS_8x2DTj-gCZjJeyg0fUVNmngyjC_XsKl5QaCdoag2lsdT_CY6WaEbfYWsSFQWKeTycbHPQpGi_bje1tt41p5LSCSr39Gg1a7E7pdQabf11ZO29DNnX4LDPdpBBXtQaMSPba3wLuAO4Zw74hHlNNOPTa_IO9giDPiZH6Vqn8CawQoSZ2TwhTumpXZS2iwQZCSz-M4pmOFYFYYMezjBF40vlovBkvUA Read more [...]
Leave a Comment :plugin, terrain, Unity more...

Menu Music/Game Objects passing between scenes

by on May.20, 2010, under Unity Scripts

This is a very useful script to use when you want to be able to choose when / how to pass a game object onto another scene and then be able to return to a previous scene without ending up with duplicate objects. (The script was taken from Unity Answers area on their site at the address below:) http://answers.unity3d.com/questions/3863/audio-or-music-to-continue-playing-between-scene-changes   private static var instance:MusicHandler; public static function GetInstance() : MusicHandler { return Read more [...]
Leave a Comment :programming, scripts, Unity more...

Simple HUD for Score & Lives in Unity

by on Apr.28, 2010, under Unity, Unity Scripts

To create a simple HUD in a Unity game for Score and Lives: Utilising the Unity GUI system (avoid this for things like Iphone development). Uses "On GUI()" - function that can run multiple times per frame depending on user input. All GUI code must be inside 'OnGUI' or else called from 'OnGUI' (in the case of separate functions to call based on cases) public int score = 0; public int lives = 3; //could use: public static int score and lives if I only had one player so that you aren't Read more [...]
Leave a Comment :HUD, Unity more...

Unity – Accessing Components

by on Apr.25, 2010, under Unity, Unity Scripts

Straight from the Unity Site here: ------------------------------------------------------------- Components are attached to game objects. Attaching a Renderer component to a game object is what makes it render on the screen, attaching a Camera turns it into a camera object. All scripts are components thus they can be attached to game objects. The most common components are accessible as simple member variables: Component Accessible as Transform transform Rigidbody rigidbody Renderer renderer Camera camera Read more [...]
Leave a Comment :programming, script, Unity more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!

Blogroll

A few highly recommended websites...

Log In