var thing : Transform;
function Update(){
Camera.OnWillRenderObject(thing){
print("it works");
}
}
but it says that I need to insert a semicolon at the end of OnWillRenderObject. I clearly can’t use OnWillRenderObject like I should. Can somebody give an example how to use it properly?