brighTT CColours texture pack 3.1 to 4.5

User avatar
camo233
New member
 
Posts: 4
Joined: Mon Mar 11, 2013 22:27

brighTT CColours texture pack 3.1 to 4.5

by camo233 » Sun Mar 24, 2013 19:15

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
Last edited by camo233 on Mon Mar 25, 2013 18:02, edited 1 time in total.
 

User avatar
camo233
New member
 
Posts: 4
Joined: Mon Mar 11, 2013 22:27

by camo233 » Mon Mar 25, 2013 16:51

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;
}
 

User avatar
camo233
New member
 
Posts: 4
Joined: Mon Mar 11, 2013 22:27

by camo233 » Mon Mar 25, 2013 17:45

get the download here: http://gamerzfreek.webs.com/
 


Return to Minetest Texture Packs

Who is online

Users browsing this forum: No registered users and 22 guests

cron