Created
February 11, 2016 02:17
-
-
Save moon-goon/9a243e09c0f41a06f2a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Button_ColorMe : MonoBehaviour { | |
public GameObject target; | |
public void ChangeYourColor () { | |
var targetMe = target.GetComponent<Renderer>(); | |
targetMe.material.color = Color.green; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment