mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
Implement onTrigger callbacks
This commit is contained in:
9
pgo/triggerPairFlag.go
Executable file
9
pgo/triggerPairFlag.go
Executable file
@ -0,0 +1,9 @@
|
||||
package pgo
|
||||
|
||||
type TriggerPairFlag uint32
|
||||
|
||||
const (
|
||||
TriggerPairFlag_eREMOVED_SHAPE_TRIGGER TriggerPairFlag = (1 << 0) //!< The trigger shape has been removed from the actor/scene.
|
||||
TriggerPairFlag_eREMOVED_SHAPE_OTHER TriggerPairFlag = (1 << 1) //!< The shape causing the trigger event has been removed from the actor/scene.
|
||||
TriggerPairFlag_eNEXT_FREE TriggerPairFlag = (1 << 2) //!< For internal use only.
|
||||
)
|
||||
Reference in New Issue
Block a user