Page 1 of 1

brighTT CColours texture pack 3.1 to 4.5

PostPosted: Sun Mar 24, 2013 19:15
by camo233
Hello!

I've just released a texture pack with better colours
and the are brighter too!
the screen shot is on the link as well as the download here:

http://gamesmaniac364.webs.com/minetest-texture-pack

PostPosted: Mon Mar 25, 2013 16:51
by camo233
If you use unity try out my smooth look at script
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
var target : Transform;
var damping = 6.0;
var smooth = true;

@script AddComponentMenu("Camera-Control/Smooth Look At")

function LateUpdate () {
    if (target) {
        if (smooth)
        {
            // Look at and dampen the rotation
            var rotation = Quaternion.LookRotation(target.position - transform.position);
            transform.rotation = Quaternion.Slerp(transform.rotation, rotation, Time.deltaTime * damping);
        }
        else
        {
            // Just lookat
            transform.LookAt(target);
        }
    }
}

function Start () {
    // Make the rigid body not change rotation
       if (rigidbody)
        rigidbody.freezeRotation = true;
}

PostPosted: Mon Mar 25, 2013 17:45
by camo233
get the download here: http://gamerzfreek.webs.com/