- Code: Select all • Expand view
if (master.Damaged)
However the engine gives an error
- Code: Select all • Expand view
Unknown identifier 'Damaged'
I have tried turning it into an actor property in the master:
- Code: Select all • Expand view
bool Damaged;
property Damaged : Damaged;
But the error stays. What am I doing wrong and how should I access variables in other actors?