如果在update()方法中更改bool值,则只调用一次函数

时间:2017-12-05 01:59:02

标签: c++ events triggers boolean

我需要帮助。我有一个update()方法,它调用每个tick。这个方法有很多功能,就像这个:

if (myBoolValue)
    some stuff
else
    another stuff

但如何称呼这个"一些东西"和另外的东西"如果更改myBoolValue而不在每次打勾时都调用它,那么只有一次?

1 个答案:

答案 0 :(得分:0)

如果你需要同时打电话为什么不这样做?

If(myboolvalue)
    Somestuff;
If(anotherboolvalue)
    Someotherstuff