Archive for the 'Unity3D' Category

iTween 2.0 coming soon!


iTween is still in progress but here’s a very short teaser on what to expect: Watch it here.

Root Motion Computer for Unity

Totally awesome tool for Unity: The Root Motion Computer

Hash help for Unity

Always forget how to iterate “properly” through a hash in Unity… so:

function Awake () {
	for (var child : Transform in transform) {
    	Global.footPlacements.Add(child.name,child);
	}
	for (var d : DictionaryEntry in Global.footPlacements){
	print(d.Key + " " + d.Value);
	}
}

I hate that we need to cast the hash objects as a non-recognizable type in UnityScript. Oh well.

iTween is going strong!

iTween is getting a ton of coverage and usage since its release. We now have a C# version and it’s documentation should be available when either Pat or I get some time.

Thanks for all of the support everyone! Let me know if you have any issues!

iTween for Unity3D is ready!


Still working on the documentation and getting a list together of additions I’d like to put in. But this version is more than capable and ready to rock.
Grab it at it’s new home: http://www.pixelplacement.com/iTween

Geometry to a screen rect.

Great for testing touches against an area of screen occupied by geometry (planes only).

var minPoints : Vector3 = Camera.main.WorldToScreenPoint(renderer.bounds.min);
var maxPoints : Vector3 = Camera.main.WorldToScreenPoint(renderer.bounds.max);
var sizePoints : Vector3 = maxPoints-minPoints;
screenRect = new Rect(minPoints.x,minPoints.y,sizePoints.x,sizePoints.y);

Unity + iPhone + Instantiation = Smooth sailing…

instantiate

I’m happy to report that instantiation is no longer an expensive operation on the iPhone with the newest version of Unity.
(Yes, that’s my desk)

When it comes to kicking ass in Unity…

channellogo-113001905

No one can touch these guys right now: http://vimeo.com/channels/aquiris

U3DObject

u3dobj_logo

Nice set of tools for wrangling Unity3D in the browser and talking to it via AS3.

Grab it here.

Storm Chasers is finally in the App Store!

Grab it here!

SC15Audio2

Next Page »