我需要帮助。我有一个update()方法,它调用每个tick。这个方法有很多功能,就像这个:
if (myBoolValue)
some stuff
else
another stuff
但如何称呼这个"一些东西"和另外的东西"如果更改myBoolValue而不在每次打勾时都调用它,那么只有一次?
答案 0 :(得分:0)
如果你需要同时打电话为什么不这样做?
If(myboolvalue)
Somestuff;
If(anotherboolvalue)
Someotherstuff