MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / postEvent

Method postEvent

Engine/source/afx/afxEffectron.cpp:939–958  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

937// public:
938
939void afxEffectron::postEvent(U8 event)
940{
941 setMaskBits(StateEventMask);
942
943 switch (event)
944 {
945 case ACTIVATE_EVENT:
946 marks_mask |= MARK_ACTIVATE;
947 break;
948 case SHUTDOWN_EVENT:
949 marks_mask |= MARK_SHUTDOWN;
950 break;
951 case DEACTIVATE_EVENT:
952 marks_mask |= MARK_DEACTIVATE;
953 break;
954 case INTERRUPT_EVENT:
955 marks_mask |= MARK_INTERRUPT;
956 break;
957 }
958}
959
960//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~~//
961

Callers 6

afxEffectron.cppFile · 0.45
onAddMethod · 0.45
onRemoveMethod · 0.45
buildMethod · 0.45
buildNextTileMethod · 0.45
loadMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected