this is what I have so far with the assets set up with the images. I’m using .png files for what that’s worth. This just doesn’t seems to work.
Thanks for any help
var playNormal : Texture2D;
var playHover : Texture2D;
function onMouseOver () {
guiTexture.texture = playHover;
}
function onMouseExit () {
guiTexture.texture = playNormal;
}