Skip to content
  • This project
    • Loading...
  • Sign in

金学艇 / xhx

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • xhx
  • ..
  • physics3d
  • physics3d-constants.lua
  • jinwawa's avatar
    0802 · bfabb962
    bfabb962
    jinwawa authored 2019-08-02 14:48:17 +0800
physics3d-constants.lua 261 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
if nil == cc.Physics3DComponent then
    return
end

cc.Physics3DComponent.PhysicsSyncFlag =
{
    NONE = 0,
    NODE_TO_PHYSICS = 1, 
    PHYSICS_TO_NODE = 2,
    NODE_AND_NODE   = 3,
}

cc.Physics3DObject.PhysicsObjType =
{
    UNKNOWN = 0,
	RIGID_BODY = 1,
}