├── 2d ├── box2d │ ├── .gitignore │ ├── assets │ │ ├── cases.meta │ │ ├── cases │ │ │ ├── demo.meta │ │ │ ├── demo │ │ │ │ ├── cutting-objects.scene │ │ │ │ ├── cutting-objects.scene.meta │ │ │ │ ├── cutting-objects.ts │ │ │ │ ├── cutting-objects.ts.meta │ │ │ │ ├── gravity-anims.ts │ │ │ │ ├── gravity-anims.ts.meta │ │ │ │ ├── gravity-radial.scene │ │ │ │ ├── gravity-radial.scene.meta │ │ │ │ ├── gravity-radial.ts │ │ │ │ ├── gravity-radial.ts.meta │ │ │ │ ├── gravity.ts │ │ │ │ ├── gravity.ts.meta │ │ │ │ ├── manifold.scene │ │ │ │ ├── manifold.scene.meta │ │ │ │ ├── manifold.ts │ │ │ │ ├── manifold.ts.meta │ │ │ │ ├── many-rigid-bodies.scene │ │ │ │ ├── many-rigid-bodies.scene.meta │ │ │ │ ├── many-rigid-bodies.ts │ │ │ │ ├── many-rigid-bodies.ts.meta │ │ │ │ ├── one-way-platform.scene │ │ │ │ ├── one-way-platform.scene.meta │ │ │ │ ├── one-way-platform.ts │ │ │ │ ├── one-way-platform.ts.meta │ │ │ │ ├── raycast-reflection.scene │ │ │ │ ├── raycast-reflection.scene.meta │ │ │ │ ├── raycast-reflection.ts │ │ │ │ ├── raycast-reflection.ts.meta │ │ │ │ ├── raycast.scene │ │ │ │ ├── raycast.scene.meta │ │ │ │ ├── raycast.ts │ │ │ │ └── raycast.ts.meta │ │ │ ├── example.meta │ │ │ ├── example │ │ │ │ ├── animated.scene │ │ │ │ ├── animated.scene.meta │ │ │ │ ├── animated.ts │ │ │ │ ├── animated.ts.meta │ │ │ │ ├── joints.meta │ │ │ │ ├── joints │ │ │ │ │ ├── distance-joint-chain.scene │ │ │ │ │ ├── distance-joint-chain.scene.meta │ │ │ │ │ ├── distance-joint.scene │ │ │ │ │ ├── distance-joint.scene.meta │ │ │ │ │ ├── fixed-joint-ragdoll.scene │ │ │ │ │ ├── fixed-joint-ragdoll.scene.meta │ │ │ │ │ ├── hinge-joint-crank.scene │ │ │ │ │ ├── hinge-joint-crank.scene.meta │ │ │ │ │ ├── hinge-joint.scene │ │ │ │ │ ├── hinge-joint.scene.meta │ │ │ │ │ ├── mouse-joint.scene │ │ │ │ │ ├── mouse-joint.scene.meta │ │ │ │ │ ├── relative-joint-human.scene │ │ │ │ │ ├── relative-joint-human.scene.meta │ │ │ │ │ ├── relative-joint-linear-offset.scene │ │ │ │ │ ├── relative-joint-linear-offset.scene.meta │ │ │ │ │ ├── relative-joint-linear-offset.ts │ │ │ │ │ ├── relative-joint-linear-offset.ts.meta │ │ │ │ │ ├── slider-joint.scene │ │ │ │ │ ├── slider-joint.scene.meta │ │ │ │ │ ├── spring-joint-damp.scene │ │ │ │ │ ├── spring-joint-damp.scene.meta │ │ │ │ │ ├── spring-joint-frequency.scene │ │ │ │ │ ├── spring-joint-frequency.scene.meta │ │ │ │ │ ├── wheel-joint.scene │ │ │ │ │ └── wheel-joint.scene.meta │ │ │ │ ├── linear-impulse.scene │ │ │ │ ├── linear-impulse.scene.meta │ │ │ │ ├── linear-impulse.ts │ │ │ │ ├── linear-impulse.ts.meta │ │ │ │ ├── mask.scene │ │ │ │ ├── mask.scene.meta │ │ │ │ ├── varing-friction.scene │ │ │ │ ├── varing-friction.scene.meta │ │ │ │ ├── varying-restitution.scene │ │ │ │ └── varying-restitution.scene.meta │ │ │ ├── physics-setting.ts │ │ │ └── physics-setting.ts.meta │ │ ├── main-menu.meta │ │ ├── main-menu │ │ │ ├── ListItem.prefab │ │ │ ├── ListItem.prefab.meta │ │ │ ├── scripts.meta │ │ │ ├── scripts │ │ │ │ ├── backbutton.ts │ │ │ │ ├── backbutton.ts.meta │ │ │ │ ├── listitem.ts │ │ │ │ ├── listitem.ts.meta │ │ │ │ ├── scenelist.ts │ │ │ │ └── scenelist.ts.meta │ │ │ ├── testlist.meta │ │ │ ├── testlist.scene │ │ │ ├── testlist.scene.meta │ │ │ ├── textures.meta │ │ │ └── textures │ │ │ │ ├── exitLeft.png │ │ │ │ ├── exitLeft.png.meta │ │ │ │ ├── left.png │ │ │ │ ├── left.png.meta │ │ │ │ ├── panelBG.png │ │ │ │ ├── panelBG.png.meta │ │ │ │ ├── right.png │ │ │ │ └── right.png.meta │ │ ├── migrate-canvas.ts │ │ ├── migrate-canvas.ts.meta │ │ ├── res.meta │ │ └── res │ │ │ ├── prefab.meta │ │ │ ├── prefab │ │ │ ├── ArcEgg.prefab │ │ │ ├── ArcEgg.prefab.meta │ │ │ ├── Platform160.prefab │ │ │ ├── Platform160.prefab.meta │ │ │ ├── Platform320.prefab │ │ │ ├── Platform320.prefab.meta │ │ │ ├── bounding.prefab │ │ │ ├── bounding.prefab.meta │ │ │ ├── box40.prefab │ │ │ ├── box40.prefab.meta │ │ │ ├── box80.prefab │ │ │ ├── box80.prefab.meta │ │ │ ├── circle20.prefab │ │ │ ├── circle20.prefab.meta │ │ │ ├── circle80.prefab │ │ │ ├── circle80.prefab.meta │ │ │ ├── mouse-joint.prefab │ │ │ └── mouse-joint.prefab.meta │ │ │ ├── texture.meta │ │ │ └── texture │ │ │ ├── 1.png │ │ │ ├── 1.png.meta │ │ │ ├── Arc90_40.png │ │ │ ├── Arc90_40.png.meta │ │ │ ├── ArcEgg.png │ │ │ ├── ArcEgg.png.meta │ │ │ ├── Box20.png │ │ │ ├── Box20.png.meta │ │ │ ├── Box40.png │ │ │ ├── Box40.png.meta │ │ │ ├── Box80.png │ │ │ ├── Box80.png.meta │ │ │ ├── Circle20.png │ │ │ ├── Circle20.png.meta │ │ │ ├── Circle40.png │ │ │ ├── Circle40.png.meta │ │ │ ├── Circle80.png │ │ │ ├── Circle80.png.meta │ │ │ ├── LineArc90_40.png │ │ │ ├── LineArc90_40.png.meta │ │ │ ├── Platform160.png │ │ │ ├── Platform160.png.meta │ │ │ ├── Triangle20.png │ │ │ ├── Triangle20.png.meta │ │ │ ├── Triangle40.png │ │ │ ├── Triangle40.png.meta │ │ │ ├── gold.png │ │ │ ├── gold.png.meta │ │ │ ├── goldcoin.png │ │ │ ├── goldcoin.png.meta │ │ │ ├── sheep_down_0.png │ │ │ ├── sheep_down_0.png.meta │ │ │ ├── spr_f_ayla.png │ │ │ ├── spr_f_ayla.png.meta │ │ │ ├── star.png │ │ │ └── star.png.meta │ ├── package.json │ ├── settings │ │ ├── 1.2.0 │ │ │ └── packages │ │ │ │ ├── builder.json │ │ │ │ ├── engine.json │ │ │ │ └── project.json │ │ ├── 3.0.0 │ │ │ └── packages │ │ │ │ ├── engine.json │ │ │ │ └── project.json │ │ └── v2 │ │ │ └── packages │ │ │ ├── cocos-service.json │ │ │ ├── engine.json │ │ │ └── project.json │ └── tsconfig.json └── common │ ├── .gitignore │ ├── assets │ ├── cases.meta │ ├── cases │ │ ├── contact-results.ts │ │ ├── contact-results.ts.meta │ │ ├── hittest.scene │ │ ├── hittest.scene.meta │ │ ├── hittest.ts │ │ ├── hittest.ts.meta │ │ ├── mask.scene │ │ ├── mask.scene.meta │ │ ├── physics-settings.ts │ │ ├── physics-settings.ts.meta │ │ ├── rotate.ts │ │ ├── rotate.ts.meta │ │ ├── shape.scene │ │ ├── shape.scene.meta │ │ ├── shape.ts │ │ ├── shape.ts.meta │ │ ├── tag.scene │ │ ├── tag.scene.meta │ │ ├── tag.ts │ │ └── tag.ts.meta │ ├── main-menu.meta │ ├── main-menu │ │ ├── ListItem.prefab │ │ ├── ListItem.prefab.meta │ │ ├── scripts.meta │ │ ├── scripts │ │ │ ├── backbutton.ts │ │ │ ├── backbutton.ts.meta │ │ │ ├── listitem.ts │ │ │ ├── listitem.ts.meta │ │ │ ├── scenelist.ts │ │ │ └── scenelist.ts.meta │ │ ├── testlist.meta │ │ ├── testlist.scene │ │ ├── testlist.scene.meta │ │ ├── textures.meta │ │ └── textures │ │ │ ├── exitLeft.png │ │ │ ├── exitLeft.png.meta │ │ │ ├── left.png │ │ │ ├── left.png.meta │ │ │ ├── panelBG.png │ │ │ ├── panelBG.png.meta │ │ │ ├── right.png │ │ │ └── right.png.meta │ ├── migrate-canvas.ts │ ├── migrate-canvas.ts.meta │ ├── res.meta │ └── res │ │ ├── textures.meta │ │ └── textures │ │ ├── star.png │ │ └── star.png.meta │ ├── package.json │ ├── settings │ ├── 1.2.0 │ │ └── packages │ │ │ ├── builder.json │ │ │ ├── engine.json │ │ │ └── project.json │ ├── 3.0.0 │ │ └── packages │ │ │ ├── builder.json │ │ │ ├── engine.json │ │ │ └── project.json │ └── v2 │ │ └── packages │ │ ├── builder.json │ │ ├── engine.json │ │ └── project.json │ └── tsconfig.json ├── 3d ├── .creator │ └── asset-template │ │ └── typescript │ │ └── Custom Script Template Help Documentation.url ├── .gitignore ├── assets │ ├── TestList.scene │ ├── TestList.scene.meta │ ├── cases.meta │ ├── cases │ │ ├── animation.meta │ │ ├── animation │ │ │ ├── animation-horizontal.anim │ │ │ ├── animation-horizontal.anim.meta │ │ │ ├── animation-vertical.anim │ │ │ └── animation-vertical.anim.meta │ │ ├── materials.meta │ │ ├── materials │ │ │ ├── box-collider.mtl │ │ │ ├── box-collider.mtl.meta │ │ │ ├── control-point.mtl │ │ │ ├── control-point.mtl.meta │ │ │ ├── ground.mtl │ │ │ ├── ground.mtl.meta │ │ │ ├── hit-point.mtl │ │ │ ├── hit-point.mtl.meta │ │ │ ├── line-segment.mtl │ │ │ ├── line-segment.mtl.meta │ │ │ ├── sphere-collider.mtl │ │ │ └── sphere-collider.mtl.meta │ │ ├── prefabs.meta │ │ ├── prefabs │ │ │ ├── AirWall.prefab │ │ │ ├── AirWall.prefab.meta │ │ │ ├── 地面.prefab │ │ │ └── 地面.prefab.meta │ │ ├── scenes.meta │ │ ├── scenes │ │ │ ├── case-capsule-trigger.scene │ │ │ ├── case-capsule-trigger.scene.meta │ │ │ ├── case-ccd-sphere.scene │ │ │ ├── case-ccd-sphere.scene.meta │ │ │ ├── case-character-controller.scene │ │ │ ├── case-character-controller.scene.meta │ │ │ ├── case-collision-event.scene │ │ │ ├── case-collision-event.scene.meta │ │ │ ├── case-constant-force.scene │ │ │ ├── case-constant-force.scene.meta │ │ │ ├── case-constraint-fixed.scene │ │ │ ├── case-constraint-fixed.scene.meta │ │ │ ├── case-constraint-hinge.scene │ │ │ ├── case-constraint-hinge.scene.meta │ │ │ ├── case-constraint-p2p.scene │ │ │ ├── case-constraint-p2p.scene.meta │ │ │ ├── case-contact-data.scene │ │ │ ├── case-contact-data.scene.meta │ │ │ ├── case-convex-colliders.scene │ │ │ ├── case-convex-colliders.scene.meta │ │ │ ├── case-damping.scene │ │ │ ├── case-damping.scene.meta │ │ │ ├── case-dynamic.scene │ │ │ ├── case-dynamic.scene.meta │ │ │ ├── case-group-mask.scene │ │ │ ├── case-group-mask.scene.meta │ │ │ ├── case-jenga.scene │ │ │ ├── case-jenga.scene.meta │ │ │ ├── case-physics-curveCast.scene │ │ │ ├── case-physics-curveCast.scene.meta │ │ │ ├── case-physics-sweep.scene │ │ │ ├── case-physics-sweep.scene.meta │ │ │ ├── case-physics-sync.scene │ │ │ ├── case-physics-sync.scene.meta │ │ │ ├── case-plane-collider.scene │ │ │ ├── case-plane-collider.scene.meta │ │ │ ├── case-rigid-collider.scene │ │ │ ├── case-rigid-collider.scene.meta │ │ │ ├── case-runtime-update.scene │ │ │ ├── case-runtime-update.scene.meta │ │ │ ├── case-trigger-event.scene │ │ │ ├── case-trigger-event.scene.meta │ │ │ ├── case-velocity.scene │ │ │ ├── case-velocity.scene.meta │ │ │ ├── configurable.meta │ │ │ ├── configurable │ │ │ │ ├── configurable-constraint-cone-twist.scene │ │ │ │ ├── configurable-constraint-cone-twist.scene.meta │ │ │ │ ├── configurable-constraint-fixed.scene │ │ │ │ ├── configurable-constraint-fixed.scene.meta │ │ │ │ ├── configurable-constraint-hinge.scene │ │ │ │ ├── configurable-constraint-hinge.scene.meta │ │ │ │ ├── configurable-constraint-p2p.scene │ │ │ │ ├── configurable-constraint-p2p.scene.meta │ │ │ │ ├── configurable-constraint-spin-slider.scene │ │ │ │ └── configurable-constraint-spin-slider.scene.meta │ │ │ ├── csae-mesh-collider.scene │ │ │ ├── csae-mesh-collider.scene.meta │ │ │ ├── csae-physics-material.scene │ │ │ ├── csae-physics-material.scene.meta │ │ │ ├── csae-physics-raycast.scene │ │ │ └── csae-physics-raycast.scene.meta │ │ ├── scripts.meta │ │ ├── scripts │ │ │ ├── CcdTest.ts │ │ │ ├── CcdTest.ts.meta │ │ │ ├── CharacterControllerTest.ts │ │ │ ├── CharacterControllerTest.ts.meta │ │ │ ├── CharacterControllerTriggerTest.ts │ │ │ ├── CharacterControllerTriggerTest.ts.meta │ │ │ ├── ColliderTest.ts │ │ │ ├── ColliderTest.ts.meta │ │ │ ├── CollisionTest.ts │ │ │ ├── CollisionTest.ts.meta │ │ │ ├── DynamicTest.ts │ │ │ ├── DynamicTest.ts.meta │ │ │ ├── EnumCommand.ts │ │ │ ├── EnumCommand.ts.meta │ │ │ ├── GroupMaskTest.ts │ │ │ ├── GroupMaskTest.ts.meta │ │ │ ├── LoopMotion.ts │ │ │ ├── LoopMotion.ts.meta │ │ │ ├── MeshColliderTest.ts │ │ │ ├── MeshColliderTest.ts.meta │ │ │ ├── RaycastTest.ts │ │ │ ├── RaycastTest.ts.meta │ │ │ ├── SupportPhyiscs.ts │ │ │ ├── SupportPhyiscs.ts.meta │ │ │ ├── SyncTest.ts │ │ │ ├── SyncTest.ts.meta │ │ │ ├── TriggerTest.ts │ │ │ ├── TriggerTest.ts.meta │ │ │ ├── VelocitySetup.ts │ │ │ ├── VelocitySetup.ts.meta │ │ │ ├── VelocityTest.ts │ │ │ ├── VelocityTest.ts.meta │ │ │ ├── collision-detection.meta │ │ │ ├── collision-detection │ │ │ │ ├── emitter.ts │ │ │ │ ├── emitter.ts.meta │ │ │ │ ├── engine-info.ts │ │ │ │ └── engine-info.ts.meta │ │ │ ├── configurable-ctl.ts │ │ │ ├── configurable-ctl.ts.meta │ │ │ ├── hinge-ctl.ts │ │ │ ├── hinge-ctl.ts.meta │ │ │ ├── physics-checker.meta │ │ │ ├── physics-checker │ │ │ │ ├── PhysicsEnvCheck.ts │ │ │ │ └── PhysicsEnvCheck.ts.meta │ │ │ ├── rigid-collider.meta │ │ │ └── rigid-collider │ │ │ │ ├── collider-manager.ts │ │ │ │ ├── collider-manager.ts.meta │ │ │ │ ├── collider.ts │ │ │ │ ├── collider.ts.meta │ │ │ │ ├── ground.ts │ │ │ │ └── ground.ts.meta │ │ ├── terrains.meta │ │ └── terrains │ │ │ ├── collision.terrain │ │ │ ├── collision.terrain.meta │ │ │ ├── collisionCCT.terrain │ │ │ ├── collisionCCT.terrain.meta │ │ │ ├── raycast.terrain │ │ │ └── raycast.terrain.meta │ ├── common.meta │ ├── common │ │ ├── convex-hull.meta │ │ ├── convex-hull │ │ │ ├── ch0.gltf │ │ │ └── ch0.gltf.meta │ │ ├── effects.meta │ │ ├── effects │ │ │ ├── bonus-unlit.effect │ │ │ └── bonus-unlit.effect.meta │ │ ├── humanoid.meta │ │ ├── humanoid │ │ │ ├── humanblend.glb │ │ │ └── humanblend.glb.meta │ │ ├── materials.meta │ │ ├── materials │ │ │ ├── basketball_court.mtl │ │ │ ├── basketball_court.mtl.meta │ │ │ ├── m-bonus-cocos.mtl │ │ │ ├── m-bonus-cocos.mtl.meta │ │ │ ├── m-trail-0.mtl │ │ │ ├── m-trail-0.mtl.meta │ │ │ ├── m-transparent.mtl │ │ │ ├── m-transparent.mtl.meta │ │ │ ├── pure-color.meta │ │ │ ├── pure-color │ │ │ │ ├── blue-emissive-ins.mtl │ │ │ │ ├── blue-emissive-ins.mtl.meta │ │ │ │ ├── blue-emissive.mtl │ │ │ │ ├── blue-emissive.mtl.meta │ │ │ │ ├── blue-instancing.mtl │ │ │ │ ├── blue-instancing.mtl.meta │ │ │ │ ├── cyan-instancing.mtl │ │ │ │ ├── cyan-instancing.mtl.meta │ │ │ │ ├── green-emissive-ins.mtl │ │ │ │ ├── green-emissive-ins.mtl.meta │ │ │ │ ├── green-emissive.mtl │ │ │ │ ├── green-emissive.mtl.meta │ │ │ │ ├── green-instancing.mtl │ │ │ │ ├── green-instancing.mtl.meta │ │ │ │ ├── purple-emissive-ins.mtl │ │ │ │ ├── purple-emissive-ins.mtl.meta │ │ │ │ ├── purple-emissive.mtl │ │ │ │ ├── purple-emissive.mtl.meta │ │ │ │ ├── red-emissive-ins.mtl │ │ │ │ ├── red-emissive-ins.mtl.meta │ │ │ │ ├── red-emissive.mtl │ │ │ │ ├── red-emissive.mtl.meta │ │ │ │ ├── red-instancing.mtl │ │ │ │ ├── red-instancing.mtl.meta │ │ │ │ ├── white-emissive-ins.mtl │ │ │ │ ├── white-emissive-ins.mtl.meta │ │ │ │ ├── white-emissive-t.mtl │ │ │ │ ├── white-emissive-t.mtl.meta │ │ │ │ ├── white-emissive.mtl │ │ │ │ ├── white-emissive.mtl.meta │ │ │ │ ├── yellow-emissive-ins.mtl │ │ │ │ ├── yellow-emissive-ins.mtl.meta │ │ │ │ ├── yellow-emissive.mtl │ │ │ │ ├── yellow-emissive.mtl.meta │ │ │ │ ├── yellow-instancing.mtl │ │ │ │ └── yellow-instancing.mtl.meta │ │ │ ├── transparent.mtl │ │ │ ├── transparent.mtl.meta │ │ │ ├── white-emissive-quad.mtl │ │ │ └── white-emissive-quad.mtl.meta │ │ ├── models-commonly.meta │ │ ├── models-commonly │ │ │ ├── basketball.meta │ │ │ └── basketball │ │ │ │ ├── bball.jpg │ │ │ │ ├── bball.jpg.meta │ │ │ │ ├── bball.mtl │ │ │ │ ├── bball.mtl.meta │ │ │ │ ├── bball_n.jpg │ │ │ │ └── bball_n.jpg.meta │ │ ├── models.meta │ │ ├── models │ │ │ ├── cocos.meta │ │ │ ├── cocos │ │ │ │ ├── Cocos.prefab │ │ │ │ ├── Cocos.prefab.meta │ │ │ │ ├── animations.meta │ │ │ │ ├── animations │ │ │ │ │ ├── cocos-anim-jump-static.bin │ │ │ │ │ ├── cocos-anim-jump-static.bin.meta │ │ │ │ │ ├── cocos-anim-jump-static.gltf │ │ │ │ │ ├── cocos-anim-jump-static.gltf.meta │ │ │ │ │ ├── cocos_anim_attack.bin │ │ │ │ │ ├── cocos_anim_attack.bin.meta │ │ │ │ │ ├── cocos_anim_attack.gltf │ │ │ │ │ ├── cocos_anim_attack.gltf.meta │ │ │ │ │ ├── cocos_anim_die.bin │ │ │ │ │ ├── cocos_anim_die.bin.meta │ │ │ │ │ ├── cocos_anim_die.gltf │ │ │ │ │ ├── cocos_anim_die.gltf.meta │ │ │ │ │ ├── cocos_anim_down.bin │ │ │ │ │ ├── cocos_anim_down.bin.meta │ │ │ │ │ ├── cocos_anim_down.gltf │ │ │ │ │ ├── cocos_anim_down.gltf.meta │ │ │ │ │ ├── cocos_anim_hurt.bin │ │ │ │ │ ├── cocos_anim_hurt.bin.meta │ │ │ │ │ ├── cocos_anim_hurt.gltf │ │ │ │ │ ├── cocos_anim_hurt.gltf.meta │ │ │ │ │ ├── cocos_anim_idle.bin │ │ │ │ │ ├── cocos_anim_idle.bin.meta │ │ │ │ │ ├── cocos_anim_idle.gltf │ │ │ │ │ ├── cocos_anim_idle.gltf.meta │ │ │ │ │ ├── cocos_anim_jump.bin │ │ │ │ │ ├── cocos_anim_jump.bin.meta │ │ │ │ │ ├── cocos_anim_jump.gltf │ │ │ │ │ ├── cocos_anim_jump.gltf.meta │ │ │ │ │ ├── cocos_anim_run.bin │ │ │ │ │ ├── cocos_anim_run.bin.meta │ │ │ │ │ ├── cocos_anim_run.gltf │ │ │ │ │ ├── cocos_anim_run.gltf.meta │ │ │ │ │ ├── cocos_anim_shoot.bin │ │ │ │ │ ├── cocos_anim_shoot.bin.meta │ │ │ │ │ ├── cocos_anim_shoot.gltf │ │ │ │ │ ├── cocos_anim_shoot.gltf.meta │ │ │ │ │ ├── cocos_anim_squat.bin │ │ │ │ │ ├── cocos_anim_squat.bin.meta │ │ │ │ │ ├── cocos_anim_squat.gltf │ │ │ │ │ ├── cocos_anim_squat.gltf.meta │ │ │ │ │ ├── cocos_anim_walk.bin │ │ │ │ │ ├── cocos_anim_walk.bin.meta │ │ │ │ │ ├── cocos_anim_walk.gltf │ │ │ │ │ └── cocos_anim_walk.gltf.meta │ │ │ │ ├── body-instanced.mtl │ │ │ │ ├── body-instanced.mtl.meta │ │ │ │ ├── body.mtl │ │ │ │ ├── body.mtl.meta │ │ │ │ ├── cocos_mesh.gltf │ │ │ │ ├── cocos_mesh.gltf.meta │ │ │ │ ├── cocos_mesh_helmet.gltf │ │ │ │ ├── cocos_mesh_helmet.gltf.meta │ │ │ │ ├── cocos_skel.gltf │ │ │ │ ├── cocos_skel.gltf.meta │ │ │ │ ├── cocos_skel_ibm.bin │ │ │ │ ├── cocos_skel_ibm.bin.meta │ │ │ │ ├── cocosfinish_01.bin │ │ │ │ ├── cocosfinish_01.bin.meta │ │ │ │ ├── cocosfinish_01_baseColor.png │ │ │ │ ├── cocosfinish_01_baseColor.png.meta │ │ │ │ ├── cocosfinish_01_emissive.png │ │ │ │ ├── cocosfinish_01_emissive.png.meta │ │ │ │ ├── cocosfinish_01_normal.png │ │ │ │ ├── cocosfinish_01_normal.png.meta │ │ │ │ ├── cocosfinish_01_occlusionRoughnessMetallic.png │ │ │ │ ├── cocosfinish_01_occlusionRoughnessMetallic.png.meta │ │ │ │ ├── cocosfinish_02.bin │ │ │ │ ├── cocosfinish_02.bin.meta │ │ │ │ ├── cocosfinish_02_baseColor.png │ │ │ │ ├── cocosfinish_02_baseColor.png.meta │ │ │ │ ├── cocosfinish_02_normal.png │ │ │ │ ├── cocosfinish_02_normal.png.meta │ │ │ │ ├── cocosfinish_02_occlusionRoughnessMetallic.png │ │ │ │ ├── cocosfinish_02_occlusionRoughnessMetallic.png.meta │ │ │ │ ├── helmet-instanced.mtl │ │ │ │ ├── helmet-instanced.mtl.meta │ │ │ │ ├── helmet.mtl │ │ │ │ ├── helmet.mtl.meta │ │ │ │ ├── labels.meta │ │ │ │ └── labels │ │ │ │ │ ├── attack.png │ │ │ │ │ ├── attack.png.meta │ │ │ │ │ ├── die.png │ │ │ │ │ ├── die.png.meta │ │ │ │ │ ├── down.png │ │ │ │ │ ├── down.png.meta │ │ │ │ │ ├── hurt.png │ │ │ │ │ ├── hurt.png.meta │ │ │ │ │ ├── idle.png │ │ │ │ │ ├── idle.png.meta │ │ │ │ │ ├── jump.png │ │ │ │ │ ├── jump.png.meta │ │ │ │ │ ├── run.png │ │ │ │ │ ├── run.png.meta │ │ │ │ │ ├── shoot.png │ │ │ │ │ ├── shoot.png.meta │ │ │ │ │ ├── squat.png │ │ │ │ │ └── squat.png.meta │ │ │ ├── customer.meta │ │ │ ├── duck.meta │ │ │ ├── duck │ │ │ │ ├── Duck.gltf │ │ │ │ ├── Duck.gltf.meta │ │ │ │ ├── Duck0.bin │ │ │ │ ├── Duck0.bin.meta │ │ │ │ ├── DuckCM.png │ │ │ │ └── DuckCM.png.meta │ │ │ ├── house.meta │ │ │ ├── house │ │ │ │ ├── house01.FBX │ │ │ │ ├── house01.FBX.meta │ │ │ │ ├── house01.jpg │ │ │ │ ├── house01.jpg.meta │ │ │ │ ├── house02.FBX │ │ │ │ ├── house02.FBX.meta │ │ │ │ ├── house02.jpg │ │ │ │ └── house02.jpg.meta │ │ │ ├── minibus.meta │ │ │ ├── minibus │ │ │ │ ├── chvan_texture_chrome_nrm.png │ │ │ │ ├── chvan_texture_chrome_nrm.png.meta │ │ │ │ ├── chvan_texture_dff.png │ │ │ │ ├── chvan_texture_dff.png.meta │ │ │ │ ├── chvan_texture_nrm.png │ │ │ │ ├── chvan_texture_nrm.png.meta │ │ │ │ ├── minibus.bin │ │ │ │ ├── minibus.bin.meta │ │ │ │ ├── minibus.gltf │ │ │ │ ├── minibus.gltf.meta │ │ │ │ ├── rimstock_04.png │ │ │ │ ├── rimstock_04.png.meta │ │ │ │ ├── ucb_bottom3_bump_NRM.png │ │ │ │ └── ucb_bottom3_bump_NRM.png.meta │ │ │ ├── plane.meta │ │ │ ├── plane │ │ │ │ ├── Materials_plane01.FBX.meta │ │ │ │ ├── Materials_plane01.FBX │ │ │ │ │ ├── Material #116.mtl │ │ │ │ │ ├── Material #116.mtl.meta │ │ │ │ │ ├── Material--116.mtl │ │ │ │ │ ├── Material--116.mtl.meta │ │ │ │ │ ├── Material50x50.mtl │ │ │ │ │ └── Material50x50.mtl.meta │ │ │ │ ├── Materials_plane01.meta │ │ │ │ ├── Materials_plane01 │ │ │ │ │ ├── Material #116.mtl │ │ │ │ │ └── Material #116.mtl.meta │ │ │ │ ├── plane01.FBX │ │ │ │ ├── plane01.FBX.meta │ │ │ │ ├── plane01.jpg │ │ │ │ └── plane01.jpg.meta │ │ │ ├── road.meta │ │ │ ├── road │ │ │ │ ├── road01.FBX │ │ │ │ ├── road01.FBX.meta │ │ │ │ ├── road01.jpg │ │ │ │ ├── road01.jpg.meta │ │ │ │ ├── road02.FBX │ │ │ │ ├── road02.FBX.meta │ │ │ │ ├── road02.jpg │ │ │ │ ├── road02.jpg.meta │ │ │ │ ├── road03.FBX │ │ │ │ ├── road03.FBX.meta │ │ │ │ ├── road03.jpg │ │ │ │ ├── road03.jpg.meta │ │ │ │ ├── road04.FBX │ │ │ │ ├── road04.FBX.meta │ │ │ │ ├── road05.FBX │ │ │ │ ├── road05.FBX.meta │ │ │ │ ├── road06.FBX │ │ │ │ ├── road06.FBX.meta │ │ │ │ ├── road07.FBX │ │ │ │ ├── road07.FBX.meta │ │ │ │ ├── road08.FBX │ │ │ │ └── road08.FBX.meta │ │ │ ├── sign.meta │ │ │ ├── sign │ │ │ │ ├── Materials_end.FBX.meta │ │ │ │ ├── Materials_end.FBX │ │ │ │ │ ├── Material #91.mtl │ │ │ │ │ └── Material #91.mtl.meta │ │ │ │ ├── Materials_end.meta │ │ │ │ ├── Materials_end │ │ │ │ │ ├── Material #91.mtl │ │ │ │ │ └── Material #91.mtl.meta │ │ │ │ ├── Materials_start.FBX.meta │ │ │ │ ├── Materials_start.FBX │ │ │ │ │ ├── Material #93.mtl │ │ │ │ │ └── Material #93.mtl.meta │ │ │ │ ├── Materials_start.meta │ │ │ │ ├── Materials_start │ │ │ │ │ ├── Material #93.mtl │ │ │ │ │ └── Material #93.mtl.meta │ │ │ │ ├── end.FBX │ │ │ │ ├── end.FBX.meta │ │ │ │ ├── end.jpg │ │ │ │ ├── end.jpg.meta │ │ │ │ ├── sign.jpg │ │ │ │ ├── sign.jpg.meta │ │ │ │ ├── sign01.FBX │ │ │ │ ├── sign01.FBX.meta │ │ │ │ ├── sign02.FBX │ │ │ │ ├── sign02.FBX.meta │ │ │ │ ├── start.FBX │ │ │ │ ├── start.FBX.meta │ │ │ │ ├── start.jpg │ │ │ │ └── start.jpg.meta │ │ │ ├── skala-stone.meta │ │ │ ├── skala-stone │ │ │ │ ├── Materials_Skala-Stone.meta │ │ │ │ ├── Materials_Skala-Stone │ │ │ │ │ ├── skala-low.mtl │ │ │ │ │ └── skala-low.mtl.meta │ │ │ │ ├── Skala-Stone.bin │ │ │ │ ├── Skala-Stone.bin.meta │ │ │ │ ├── Skala-Stone.gltf │ │ │ │ ├── Skala-Stone.gltf.meta │ │ │ │ ├── skala-low-diffuse.jpg │ │ │ │ ├── skala-low-diffuse.jpg.meta │ │ │ │ ├── skala-low-normal.jpg │ │ │ │ └── skala-low-normal.jpg.meta │ │ │ ├── suzanne.meta │ │ │ ├── suzanne │ │ │ │ ├── Materials_Suzanne.meta │ │ │ │ ├── Materials_Suzanne │ │ │ │ │ ├── Suzanne.mtl │ │ │ │ │ └── Suzanne.mtl.meta │ │ │ │ ├── Suzanne.bin │ │ │ │ ├── Suzanne.bin.meta │ │ │ │ ├── Suzanne.gltf │ │ │ │ ├── Suzanne.gltf.meta │ │ │ │ ├── Suzanne_BaseColor.png │ │ │ │ ├── Suzanne_BaseColor.png.meta │ │ │ │ ├── Suzanne_MetallicRoughness.png │ │ │ │ └── Suzanne_MetallicRoughness.png.meta │ │ │ ├── taxi07.meta │ │ │ ├── taxi07 │ │ │ │ ├── Materials_taxi07.FBX.meta │ │ │ │ ├── Materials_taxi07.FBX │ │ │ │ │ ├── Material #26.mtl │ │ │ │ │ └── Material #26.mtl.meta │ │ │ │ ├── Materials_taxi07.meta │ │ │ │ ├── Materials_taxi07 │ │ │ │ │ ├── Material #26.mtl │ │ │ │ │ └── Material #26.mtl.meta │ │ │ │ ├── taxi07.FBX │ │ │ │ ├── taxi07.FBX.meta │ │ │ │ ├── taxi07Black.png │ │ │ │ ├── taxi07Black.png.meta │ │ │ │ ├── taxi07White.png │ │ │ │ └── taxi07White.png.meta │ │ │ ├── tree.meta │ │ │ ├── tree │ │ │ │ ├── stone01.FBX │ │ │ │ ├── stone01.FBX.meta │ │ │ │ ├── stone01.png │ │ │ │ ├── stone01.png.meta │ │ │ │ ├── stone02.FBX │ │ │ │ ├── stone02.FBX.meta │ │ │ │ ├── stone02.png │ │ │ │ ├── stone02.png.meta │ │ │ │ ├── tree01.FBX │ │ │ │ ├── tree01.FBX.meta │ │ │ │ ├── tree02.FBX │ │ │ │ ├── tree02.FBX.meta │ │ │ │ ├── trees01.jpg │ │ │ │ └── trees01.jpg.meta │ │ │ ├── truck.meta │ │ │ └── truck │ │ │ │ ├── Materials_truck02.FBX.meta │ │ │ │ ├── Materials_truck02.FBX │ │ │ │ ├── Material #28.mtl │ │ │ │ ├── Material #28.mtl.meta │ │ │ │ ├── blue.mtl │ │ │ │ ├── blue.mtl.meta │ │ │ │ ├── pink.mtl │ │ │ │ ├── pink.mtl.meta │ │ │ │ ├── silvery.mtl │ │ │ │ └── silvery.mtl.meta │ │ │ │ ├── Materials_truck02.meta │ │ │ │ ├── Materials_truck02 │ │ │ │ ├── Material #28.mtl │ │ │ │ └── Material #28.mtl.meta │ │ │ │ ├── truck01.FBX │ │ │ │ ├── truck01.FBX.meta │ │ │ │ ├── truck01.jpg │ │ │ │ ├── truck01.jpg.meta │ │ │ │ ├── truck02.FBX │ │ │ │ ├── truck02.FBX.meta │ │ │ │ ├── truck02Blue.jpg │ │ │ │ ├── truck02Blue.jpg.meta │ │ │ │ ├── truck02Pink.jpg │ │ │ │ ├── truck02Pink.jpg.meta │ │ │ │ ├── truck02Silvery.jpg │ │ │ │ └── truck02Silvery.jpg.meta │ │ ├── physics-checker.meta │ │ ├── physics-checker │ │ │ ├── cannon-ammo.prefab │ │ │ └── cannon-ammo.prefab.meta │ │ ├── physics-materials.meta │ │ ├── physics-materials │ │ │ ├── one-zero.pmtl │ │ │ ├── one-zero.pmtl.meta │ │ │ ├── one.pmtl │ │ │ ├── one.pmtl.meta │ │ │ ├── zero-one.pmtl │ │ │ ├── zero-one.pmtl.meta │ │ │ ├── zero.pmtl │ │ │ └── zero.pmtl.meta │ │ ├── scripts.meta │ │ ├── scripts │ │ │ ├── AxisHelper.ts │ │ │ ├── AxisHelper.ts.meta │ │ │ ├── CharacterControllerHelper.ts │ │ │ ├── CharacterControllerHelper.ts.meta │ │ │ ├── ContactPointHelper.ts │ │ │ ├── ContactPointHelper.ts.meta │ │ │ ├── CurveCastHelper.ts │ │ │ ├── CurveCastHelper.ts.meta │ │ │ ├── EmitBullet.ts │ │ │ ├── EmitBullet.ts.meta │ │ │ ├── Noise.ts │ │ │ ├── Noise.ts.meta │ │ │ ├── PrefabPoolUtil.ts │ │ │ ├── PrefabPoolUtil.ts.meta │ │ │ ├── ProfilerManager.ts │ │ │ ├── ProfilerManager.ts.meta │ │ │ ├── RaycastHelper.ts │ │ │ ├── RaycastHelper.ts.meta │ │ │ ├── SweepHelper.ts │ │ │ ├── SweepHelper.ts.meta │ │ │ ├── first-person-camera.ts │ │ │ └── first-person-camera.ts.meta │ │ ├── textures.meta │ │ └── textures │ │ │ ├── 000881.png │ │ │ ├── 000881.png.meta │ │ │ ├── basketball_court.jpeg │ │ │ └── basketball_court.jpeg.meta │ ├── demo.meta │ ├── demo │ │ ├── benchmark.meta │ │ ├── benchmark │ │ │ ├── demo-benchmark.scene │ │ │ ├── demo-benchmark.scene.meta │ │ │ ├── materials.meta │ │ │ ├── materials │ │ │ │ ├── ground.mtl │ │ │ │ ├── ground.mtl.meta │ │ │ │ ├── rb.mtl │ │ │ │ ├── rb.mtl.meta │ │ │ │ ├── sb.mtl │ │ │ │ └── sb.mtl.meta │ │ │ ├── prefabs.meta │ │ │ ├── prefabs │ │ │ │ ├── Box-RB.prefab │ │ │ │ ├── Box-RB.prefab.meta │ │ │ │ ├── Box.prefab │ │ │ │ ├── Box.prefab.meta │ │ │ │ ├── Sphere-RB.prefab │ │ │ │ ├── Sphere-RB.prefab.meta │ │ │ │ ├── Sphere.prefab │ │ │ │ └── Sphere.prefab.meta │ │ │ ├── scripts.meta │ │ │ └── scripts │ │ │ │ ├── Benchmark.ts │ │ │ │ └── Benchmark.ts.meta │ │ ├── buoyancy.meta │ │ ├── buoyancy │ │ │ ├── Buoyancy.ts │ │ │ ├── Buoyancy.ts.meta │ │ │ ├── WaterWaves.ts │ │ │ ├── WaterWaves.ts.meta │ │ │ ├── demo-buoyancy.scene │ │ │ ├── demo-buoyancy.scene.meta │ │ │ ├── materials.meta │ │ │ ├── materials │ │ │ │ ├── Wall.mtl │ │ │ │ ├── Wall.mtl.meta │ │ │ │ ├── Water.mtl │ │ │ │ └── Water.mtl.meta │ │ │ ├── textures.meta │ │ │ └── textures │ │ │ │ ├── tiles.jpg │ │ │ │ └── tiles.jpg.meta │ │ ├── falling-ball.meta │ │ ├── falling-ball │ │ │ ├── demo-falling-ball.scene │ │ │ ├── demo-falling-ball.scene.meta │ │ │ ├── materials.meta │ │ │ ├── materials │ │ │ │ ├── m-cube-red.mtl │ │ │ │ ├── m-cube-red.mtl.meta │ │ │ │ ├── m-cube.mtl │ │ │ │ ├── m-cube.mtl.meta │ │ │ │ ├── m-floor-flag.mtl │ │ │ │ └── m-floor-flag.mtl.meta │ │ │ ├── prefabs.meta │ │ │ ├── prefabs │ │ │ │ ├── Cube.prefab │ │ │ │ ├── Cube.prefab.meta │ │ │ │ ├── CubeRed.prefab │ │ │ │ └── CubeRed.prefab.meta │ │ │ ├── scripts.meta │ │ │ ├── scripts │ │ │ │ ├── BallCtr.ts │ │ │ │ ├── BallCtr.ts.meta │ │ │ │ ├── CameraFollow.ts │ │ │ │ ├── CameraFollow.ts.meta │ │ │ │ ├── ColumnCtr.ts │ │ │ │ ├── ColumnCtr.ts.meta │ │ │ │ ├── FloorFlagCtr.ts │ │ │ │ ├── FloorFlagCtr.ts.meta │ │ │ │ ├── GameConfig.ts │ │ │ │ ├── GameConfig.ts.meta │ │ │ │ ├── GameCtr.ts │ │ │ │ ├── GameCtr.ts.meta │ │ │ │ ├── TempConst.ts │ │ │ │ └── TempConst.ts.meta │ │ │ ├── textures.meta │ │ │ └── textures │ │ │ │ ├── 128x128.png │ │ │ │ ├── 128x128.png.meta │ │ │ │ ├── cocos.jpg │ │ │ │ └── cocos.jpg.meta │ │ ├── roll-a-ball.meta │ │ ├── roll-a-ball │ │ │ ├── demo-roll-a-ball.scene │ │ │ ├── demo-roll-a-ball.scene.meta │ │ │ ├── materials.meta │ │ │ ├── materials │ │ │ │ ├── ball.pmtl │ │ │ │ ├── ball.pmtl.meta │ │ │ │ ├── m1.mtl │ │ │ │ ├── m1.mtl.meta │ │ │ │ ├── m2.mtl │ │ │ │ ├── m2.mtl.meta │ │ │ │ ├── m3.mtl │ │ │ │ ├── m3.mtl.meta │ │ │ │ ├── m4.mtl │ │ │ │ ├── m4.mtl.meta │ │ │ │ ├── m5.mtl │ │ │ │ └── m5.mtl.meta │ │ │ ├── prefabs.meta │ │ │ ├── prefabs │ │ │ │ ├── Bonus.prefab │ │ │ │ └── Bonus.prefab.meta │ │ │ ├── scripts.meta │ │ │ ├── scripts │ │ │ │ ├── Instantiate.ts │ │ │ │ ├── Instantiate.ts.meta │ │ │ │ ├── ball-control.ts │ │ │ │ ├── ball-control.ts.meta │ │ │ │ ├── collider-disabled.ts │ │ │ │ ├── collider-disabled.ts.meta │ │ │ │ ├── coordinate.ts │ │ │ │ └── coordinate.ts.meta │ │ │ ├── textures.meta │ │ │ └── textures │ │ │ │ ├── [2K]ChristmasTreeOrnament03.meta │ │ │ │ └── [2K]ChristmasTreeOrnament03 │ │ │ │ ├── ChristmasTreeOrnament03_col.jpg │ │ │ │ ├── ChristmasTreeOrnament03_col.jpg.meta │ │ │ │ ├── ChristmasTreeOrnament03_disp.jpg │ │ │ │ ├── ChristmasTreeOrnament03_disp.jpg.meta │ │ │ │ ├── ChristmasTreeOrnament03_met.jpg │ │ │ │ ├── ChristmasTreeOrnament03_met.jpg.meta │ │ │ │ ├── ChristmasTreeOrnament03_nrm.jpg │ │ │ │ ├── ChristmasTreeOrnament03_nrm.jpg.meta │ │ │ │ ├── ChristmasTreeOrnament03_rgh.jpg │ │ │ │ └── ChristmasTreeOrnament03_rgh.jpg.meta │ │ ├── simple-bow.meta │ │ ├── simple-bow │ │ │ ├── demo-simple-bow.scene │ │ │ ├── demo-simple-bow.scene.meta │ │ │ ├── materials.meta │ │ │ ├── models.meta │ │ │ ├── models │ │ │ │ ├── bow_and_arrow_rigged.meta │ │ │ │ ├── bow_and_arrow_rigged │ │ │ │ │ ├── scene.bin │ │ │ │ │ ├── scene.bin.meta │ │ │ │ │ ├── scene.gltf │ │ │ │ │ ├── scene.gltf.meta │ │ │ │ │ ├── textures.meta │ │ │ │ │ └── textures │ │ │ │ │ │ ├── Arrow_baseColor.png │ │ │ │ │ │ ├── Arrow_baseColor.png.meta │ │ │ │ │ │ ├── material_baseColor.png │ │ │ │ │ │ └── material_baseColor.png.meta │ │ │ │ ├── cross.meta │ │ │ │ ├── cross │ │ │ │ │ ├── scene.bin │ │ │ │ │ ├── scene.bin.meta │ │ │ │ │ ├── scene.gltf │ │ │ │ │ ├── scene.gltf.meta │ │ │ │ │ ├── textures.meta │ │ │ │ │ └── textures │ │ │ │ │ │ ├── Material_baseColor.jpeg │ │ │ │ │ │ ├── Material_baseColor.jpeg.meta │ │ │ │ │ │ ├── Material_metallicRoughness.png │ │ │ │ │ │ ├── Material_metallicRoughness.png.meta │ │ │ │ │ │ ├── Material_normal.jpeg │ │ │ │ │ │ └── Material_normal.jpeg.meta │ │ │ │ ├── desert_house_01_free.meta │ │ │ │ ├── desert_house_01_free │ │ │ │ │ ├── Materials_scene.meta │ │ │ │ │ ├── Materials_scene │ │ │ │ │ │ ├── BLACK.mtl │ │ │ │ │ │ ├── BLACK.mtl.meta │ │ │ │ │ │ ├── BRICKS_23.mtl │ │ │ │ │ │ ├── BRICKS_23.mtl.meta │ │ │ │ │ │ ├── BRICKS_25.mtl │ │ │ │ │ │ ├── BRICKS_25.mtl.meta │ │ │ │ │ │ ├── FABRIC_01.mtl │ │ │ │ │ │ ├── FABRIC_01.mtl.meta │ │ │ │ │ │ ├── PLASTER_19.mtl │ │ │ │ │ │ ├── PLASTER_19.mtl.meta │ │ │ │ │ │ ├── SAND_02.mtl │ │ │ │ │ │ ├── SAND_02.mtl.meta │ │ │ │ │ │ ├── STONE_10.mtl │ │ │ │ │ │ ├── STONE_10.mtl.meta │ │ │ │ │ │ ├── WOOD_06.mtl │ │ │ │ │ │ └── WOOD_06.mtl.meta │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── license.txt.meta │ │ │ │ │ ├── scene.bin │ │ │ │ │ ├── scene.bin.meta │ │ │ │ │ ├── scene.gltf │ │ │ │ │ ├── scene.gltf.meta │ │ │ │ │ ├── textures.meta │ │ │ │ │ └── textures │ │ │ │ │ │ ├── BRICKS_23_baseColor.jpeg │ │ │ │ │ │ ├── BRICKS_23_baseColor.jpeg.meta │ │ │ │ │ │ ├── BRICKS_23_metallicRoughness.png │ │ │ │ │ │ ├── BRICKS_23_metallicRoughness.png.meta │ │ │ │ │ │ ├── BRICKS_23_normal.png │ │ │ │ │ │ ├── BRICKS_23_normal.png.meta │ │ │ │ │ │ ├── BRICKS_25_baseColor.jpeg │ │ │ │ │ │ ├── BRICKS_25_baseColor.jpeg.meta │ │ │ │ │ │ ├── BRICKS_25_metallicRoughness.png │ │ │ │ │ │ ├── BRICKS_25_metallicRoughness.png.meta │ │ │ │ │ │ ├── BRICKS_25_normal.png │ │ │ │ │ │ ├── BRICKS_25_normal.png.meta │ │ │ │ │ │ ├── FABRIC_01_baseColor.png │ │ │ │ │ │ ├── FABRIC_01_baseColor.png.meta │ │ │ │ │ │ ├── FABRIC_01_normal.png │ │ │ │ │ │ ├── FABRIC_01_normal.png.meta │ │ │ │ │ │ ├── PLASTER_19_baseColor.jpeg │ │ │ │ │ │ ├── PLASTER_19_baseColor.jpeg.meta │ │ │ │ │ │ ├── PLASTER_19_metallicRoughness.png │ │ │ │ │ │ ├── PLASTER_19_metallicRoughness.png.meta │ │ │ │ │ │ ├── PLASTER_19_normal.png │ │ │ │ │ │ ├── PLASTER_19_normal.png.meta │ │ │ │ │ │ ├── SAND_02_baseColor.jpeg │ │ │ │ │ │ ├── SAND_02_baseColor.jpeg.meta │ │ │ │ │ │ ├── SAND_02_metallicRoughness.png │ │ │ │ │ │ ├── SAND_02_metallicRoughness.png.meta │ │ │ │ │ │ ├── SAND_02_normal.png │ │ │ │ │ │ ├── SAND_02_normal.png.meta │ │ │ │ │ │ ├── STONE_10_baseColor.jpeg │ │ │ │ │ │ ├── STONE_10_baseColor.jpeg.meta │ │ │ │ │ │ ├── STONE_10_metallicRoughness.png │ │ │ │ │ │ ├── STONE_10_metallicRoughness.png.meta │ │ │ │ │ │ ├── STONE_10_normal.png │ │ │ │ │ │ ├── STONE_10_normal.png.meta │ │ │ │ │ │ ├── WOOD_06_baseColor.jpeg │ │ │ │ │ │ ├── WOOD_06_baseColor.jpeg.meta │ │ │ │ │ │ ├── WOOD_06_metallicRoughness.png │ │ │ │ │ │ ├── WOOD_06_metallicRoughness.png.meta │ │ │ │ │ │ ├── WOOD_06_normal.png │ │ │ │ │ │ └── WOOD_06_normal.png.meta │ │ │ │ ├── hex.meta │ │ │ │ ├── hex │ │ │ │ │ ├── Hex.glb │ │ │ │ │ ├── Hex.glb.meta │ │ │ │ │ ├── Materials_Hex.meta │ │ │ │ │ └── Materials_Hex │ │ │ │ │ │ ├── Default OBJ.006.mtl │ │ │ │ │ │ └── Default OBJ.006.mtl.meta │ │ │ │ ├── red_apple.meta │ │ │ │ └── red_apple │ │ │ │ │ ├── Materials_scene.meta │ │ │ │ │ ├── Materials_scene │ │ │ │ │ ├── Apple_Baked.mtl │ │ │ │ │ └── Apple_Baked.mtl.meta │ │ │ │ │ ├── scene.bin │ │ │ │ │ ├── scene.bin.meta │ │ │ │ │ ├── scene.gltf │ │ │ │ │ ├── scene.gltf.meta │ │ │ │ │ ├── textures.meta │ │ │ │ │ └── textures │ │ │ │ │ ├── Apple_Baked_baseColor.png │ │ │ │ │ ├── Apple_Baked_baseColor.png.meta │ │ │ │ │ ├── Apple_Baked_metallicRoughness.png │ │ │ │ │ ├── Apple_Baked_metallicRoughness.png.meta │ │ │ │ │ ├── Apple_Baked_normal.png │ │ │ │ │ └── Apple_Baked_normal.png.meta │ │ │ ├── prefabs.meta │ │ │ ├── prefabs │ │ │ │ ├── Cross.prefab │ │ │ │ ├── Cross.prefab.meta │ │ │ │ ├── Hex.prefab │ │ │ │ ├── Hex.prefab.meta │ │ │ │ ├── RedApple.prefab │ │ │ │ ├── RedApple.prefab.meta │ │ │ │ ├── RiggedBow.prefab │ │ │ │ └── RiggedBow.prefab.meta │ │ │ ├── scripts.meta │ │ │ └── scripts │ │ │ │ ├── GenerateHexMap.ts │ │ │ │ ├── GenerateHexMap.ts.meta │ │ │ │ ├── RiggedBow.ts │ │ │ │ └── RiggedBow.ts.meta │ │ ├── simple-car.meta │ │ ├── simple-car │ │ │ ├── Role.prefab │ │ │ ├── Role.prefab.meta │ │ │ ├── demo-simple-car.scene │ │ │ ├── demo-simple-car.scene.meta │ │ │ ├── editor-only.meta │ │ │ ├── editor-only │ │ │ │ ├── BonusEdit.scene │ │ │ │ ├── BonusEdit.scene.meta │ │ │ │ ├── MapCocos.scene │ │ │ │ └── MapCocos.scene.meta │ │ │ ├── materials.meta │ │ │ ├── materials │ │ │ │ ├── m1.mtl │ │ │ │ ├── m1.mtl.meta │ │ │ │ ├── m2.mtl │ │ │ │ ├── m2.mtl.meta │ │ │ │ ├── m3.mtl │ │ │ │ ├── m3.mtl.meta │ │ │ │ ├── m4.mtl │ │ │ │ ├── m4.mtl.meta │ │ │ │ ├── mf.mtl │ │ │ │ ├── mf.mtl.meta │ │ │ │ ├── mp-road-helper.mtl │ │ │ │ ├── mp-road-helper.mtl.meta │ │ │ │ ├── mp.mtl │ │ │ │ └── mp.mtl.meta │ │ │ ├── scripts.meta │ │ │ ├── scripts │ │ │ │ ├── const.meta │ │ │ │ ├── const │ │ │ │ │ ├── EnumDefine.ts │ │ │ │ │ ├── EnumDefine.ts.meta │ │ │ │ │ ├── Interface.ts │ │ │ │ │ └── Interface.ts.meta │ │ │ │ ├── debug.meta │ │ │ │ ├── debug │ │ │ │ │ ├── DebugCamera.ts │ │ │ │ │ ├── DebugCamera.ts.meta │ │ │ │ │ ├── DebugManager.ts │ │ │ │ │ ├── DebugManager.ts.meta │ │ │ │ │ ├── MapLoaderTesing.ts │ │ │ │ │ ├── MapLoaderTesing.ts.meta │ │ │ │ │ ├── MapSpawner.ts │ │ │ │ │ └── MapSpawner.ts.meta │ │ │ │ ├── gameplay.meta │ │ │ │ └── gameplay │ │ │ │ │ ├── BonusMgr.ts │ │ │ │ │ ├── BonusMgr.ts.meta │ │ │ │ │ ├── CameraFollow.ts │ │ │ │ │ ├── CameraFollow.ts.meta │ │ │ │ │ ├── FourDirButtons.ts │ │ │ │ │ ├── FourDirButtons.ts.meta │ │ │ │ │ ├── InstanceMgr.ts │ │ │ │ │ ├── InstanceMgr.ts.meta │ │ │ │ │ ├── MotorCom.ts │ │ │ │ │ ├── MotorCom.ts.meta │ │ │ │ │ ├── MotorCtr.ts │ │ │ │ │ ├── MotorCtr.ts.meta │ │ │ │ │ ├── MotorState.ts │ │ │ │ │ ├── MotorState.ts.meta │ │ │ │ │ └── PhysicsConfig.ts.meta │ │ │ ├── sprites.meta │ │ │ ├── sprites │ │ │ │ ├── Arrow.png │ │ │ │ └── Arrow.png.meta │ │ │ ├── textures.meta │ │ │ └── textures │ │ │ │ ├── 128x128.png │ │ │ │ ├── 128x128.png.meta │ │ │ │ ├── cocos.jpg │ │ │ │ ├── cocos.jpg.meta │ │ │ │ ├── road.png │ │ │ │ └── road.png.meta │ │ ├── simple-hole.meta │ │ └── simple-hole │ │ │ ├── demo-simple-hole.scene │ │ │ ├── demo-simple-hole.scene.meta │ │ │ ├── materials.meta │ │ │ ├── materials │ │ │ ├── m1.mtl │ │ │ ├── m1.mtl.meta │ │ │ ├── m2.mtl │ │ │ ├── m2.mtl.meta │ │ │ ├── m3.mtl │ │ │ ├── m3.mtl.meta │ │ │ ├── m4.mtl │ │ │ ├── m4.mtl.meta │ │ │ ├── mh-debug.mtl │ │ │ ├── mh-debug.mtl.meta │ │ │ ├── mh.mtl │ │ │ ├── mh.mtl.meta │ │ │ ├── mp-debug.mtl │ │ │ ├── mp-debug.mtl.meta │ │ │ ├── mp.mtl │ │ │ └── mp.mtl.meta │ │ │ ├── prefabs.meta │ │ │ ├── prefabs │ │ │ ├── Cube.prefab │ │ │ ├── Cube.prefab.meta │ │ │ ├── Sphere.prefab │ │ │ └── Sphere.prefab.meta │ │ │ ├── scripts.meta │ │ │ └── scripts │ │ │ ├── debug.meta │ │ │ ├── debug │ │ │ ├── active-change.ts │ │ │ ├── active-change.ts.meta │ │ │ ├── disable-onload.ts │ │ │ ├── disable-onload.ts.meta │ │ │ ├── material-change.ts │ │ │ └── material-change.ts.meta │ │ │ ├── gameplay.meta │ │ │ └── gameplay │ │ │ ├── EGroupMask.ts │ │ │ ├── EGroupMask.ts.meta │ │ │ ├── EShapeAlgorithm.ts │ │ │ ├── EShapeAlgorithm.ts.meta │ │ │ ├── EntitySetup.ts │ │ │ ├── EntitySetup.ts.meta │ │ │ ├── Instantiate.ts │ │ │ ├── Instantiate.ts.meta │ │ │ ├── MotionCtr.ts │ │ │ └── MotionCtr.ts.meta │ ├── experiment.meta │ ├── experiment │ │ ├── character-controller.meta │ │ ├── character-controller │ │ │ ├── BearingController.ts │ │ │ ├── BearingController.ts.meta │ │ │ ├── CharacterController.ts │ │ │ ├── CharacterController.ts.meta │ │ │ ├── CharacterControllerTest.ts │ │ │ ├── CharacterControllerTest.ts.meta │ │ │ ├── ep-character-controller.scene │ │ │ └── ep-character-controller.scene.meta │ │ ├── constraint.meta │ │ ├── constraint │ │ │ ├── materials.meta │ │ │ ├── materials │ │ │ │ ├── color0.mtl │ │ │ │ ├── color0.mtl.meta │ │ │ │ ├── color1.mtl │ │ │ │ ├── color1.mtl.meta │ │ │ │ ├── color2.mtl │ │ │ │ ├── color2.mtl.meta │ │ │ │ ├── color3.mtl │ │ │ │ ├── color3.mtl.meta │ │ │ │ ├── pivot.mtl │ │ │ │ └── pivot.mtl.meta │ │ │ ├── scenes.meta │ │ │ ├── scenes │ │ │ │ ├── ep-constraint-hinge.scene │ │ │ │ ├── ep-constraint-hinge.scene.meta │ │ │ │ ├── ep-constraint-p2p.scene │ │ │ │ └── ep-constraint-p2p.scene.meta │ │ │ ├── scripts.meta │ │ │ └── scripts │ │ │ │ ├── HingeConstraint.ts │ │ │ │ ├── HingeConstraint.ts.meta │ │ │ │ ├── Point2PointConstraint.ts │ │ │ │ └── Point2PointConstraint.ts.meta │ │ ├── physics-material-plus.meta │ │ └── physics-material-plus │ │ │ ├── rolling-friction.meta │ │ │ ├── rolling-friction │ │ │ ├── ep-rolling-friction.scene │ │ │ ├── ep-rolling-friction.scene.meta │ │ │ ├── rolling-0.5.pmtl │ │ │ ├── rolling-0.5.pmtl.meta │ │ │ ├── rolling-0.pmtl │ │ │ ├── rolling-0.pmtl.meta │ │ │ ├── rolling-1.pmtl │ │ │ └── rolling-1.pmtl.meta │ │ │ ├── spinning-friction.meta │ │ │ └── spinning-friction │ │ │ ├── SpinningTest.ts │ │ │ ├── SpinningTest.ts.meta │ │ │ ├── ep-spinning-friction.scene │ │ │ ├── ep-spinning-friction.scene.meta │ │ │ ├── spinning-0.25.pmtl │ │ │ ├── spinning-0.25.pmtl.meta │ │ │ ├── spinning-0.5.pmtl │ │ │ ├── spinning-0.5.pmtl.meta │ │ │ ├── spinning-0.75.pmtl │ │ │ ├── spinning-0.75.pmtl.meta │ │ │ ├── spinning-1.pmtl │ │ │ └── spinning-1.pmtl.meta │ ├── misc.meta │ ├── misc │ │ ├── TestList.meta │ │ ├── TestList │ │ │ ├── ListItem.prefab │ │ │ ├── ListItem.prefab.meta │ │ │ ├── backbutton.ts │ │ │ ├── backbutton.ts.meta │ │ │ ├── exitLeft.png │ │ │ ├── exitLeft.png.meta │ │ │ ├── left.png │ │ │ ├── left.png.meta │ │ │ ├── listitem.ts │ │ │ ├── listitem.ts.meta │ │ │ ├── panelBG.png │ │ │ ├── panelBG.png.meta │ │ │ ├── right.png │ │ │ ├── right.png.meta │ │ │ ├── scenelist.ts │ │ │ └── scenelist.ts.meta │ │ ├── checks.meta │ │ └── checks │ │ │ ├── PhysicsEnvCheck.ts │ │ │ ├── PhysicsEnvCheck.ts.meta │ │ │ ├── builtin-bullet.prefab │ │ │ ├── builtin-bullet.prefab.meta │ │ │ ├── builtin-cannon-bullet.prefab │ │ │ ├── builtin-cannon-bullet.prefab.meta │ │ │ ├── builtin.prefab │ │ │ ├── builtin.prefab.meta │ │ │ ├── bullet.prefab │ │ │ ├── bullet.prefab.meta │ │ │ ├── cannon-bullet.prefab │ │ │ └── cannon-bullet.prefab.meta │ ├── resources.meta │ ├── resources │ │ ├── common.meta │ │ ├── common │ │ │ ├── prefabs.meta │ │ │ └── prefabs │ │ │ │ ├── Arrow.prefab │ │ │ │ ├── Arrow.prefab.meta │ │ │ │ ├── Axis.prefab │ │ │ │ ├── Axis.prefab.meta │ │ │ │ ├── Point.prefab │ │ │ │ └── Point.prefab.meta │ │ ├── simple-car.meta │ │ └── simple-car │ │ │ ├── map.meta │ │ │ ├── map │ │ │ ├── MapCocos.json │ │ │ └── MapCocos.json.meta │ │ │ ├── prefabs.meta │ │ │ └── prefabs │ │ │ ├── mapItem.meta │ │ │ └── mapItem │ │ │ ├── Bonus-Cocos.prefab │ │ │ ├── Bonus-Cocos.prefab.meta │ │ │ ├── CocosPlane.prefab │ │ │ ├── CocosPlane.prefab.meta │ │ │ ├── house01.prefab │ │ │ ├── house01.prefab.meta │ │ │ ├── house02.prefab │ │ │ ├── house02.prefab.meta │ │ │ ├── truck01.prefab │ │ │ ├── truck01.prefab.meta │ │ │ ├── truck02.prefab │ │ │ └── truck02.prefab.meta │ ├── sweep.terrain │ └── sweep.terrain.meta ├── package.json ├── settings │ ├── 1.2.0 │ │ └── packages │ │ │ ├── builder.json │ │ │ ├── engine.json │ │ │ ├── preview.json │ │ │ └── project.json │ ├── 3.0.0 │ │ └── packages │ │ │ ├── builder.json │ │ │ ├── engine.json │ │ │ ├── preview.json │ │ │ └── project.json │ ├── packages │ │ ├── builder.json │ │ ├── preview.json │ │ └── project-setting.json │ └── v2 │ │ └── packages │ │ ├── builder.json │ │ ├── cocos-service.json │ │ ├── device.json │ │ ├── engine.json │ │ ├── information.json │ │ ├── preview.json │ │ ├── program.json │ │ └── project.json ├── tsconfig.json └── types │ ├── Ammo.d.ts │ └── CANNON.d.ts └── README.md /2d/box2d/assets/cases.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ab71374b-fe41-4f02-975f-99273e254f1d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/demo.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "5c36e49b-3392-4188-8156-a41feca0a27c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/demo/cutting-objects.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "3f75e7cc-c436-4cf5-ba2e-cee957f4bc08", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/demo/gravity-radial.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "eba5f082-a354-46cd-96e3-319482ce1a44", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/demo/manifold.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "5977ffec-219a-46e1-b9b1-c09195427244", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/demo/many-rigid-bodies.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.48", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "c8fc5a0c-7edb-481d-a310-6da4ef96fc56", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/demo/many-rigid-bodies.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "7357cce1-fe97-4c8a-bc2e-b347918b4c89", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/demo/one-way-platform.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "e67a2273-d008-476d-b9a9-d9104ecff362", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/demo/raycast-reflection.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "a612760c-cff3-46a4-9938-41e2728eb721", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/demo/raycast.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "ff18d582-5776-465a-95be-2d8e84d47fb1", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b89f0f7d-a09f-4639-b9c7-f7eb7eef30b9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/animated.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "69470b4e-87fe-4c5a-a875-40d945016e88", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b34f212d-deac-49b6-b577-62e602c0013c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/distance-joint-chain.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "28504572-ddb9-4003-898e-50ffa1b0029a", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/distance-joint.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "5a80160e-fada-41f7-a7d8-aeb5fdc273ca", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/fixed-joint-ragdoll.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "6047e5ea-2b9e-49a5-9ba2-c15bfbd4cd5f", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/hinge-joint-crank.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "baff4675-7821-428a-a0a8-7f8a4c6aaf68", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/hinge-joint.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "e8d9cdb4-b249-4a5a-a8bc-0aa2adbc06f7", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/mouse-joint.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "5193a888-84d5-47d8-8f72-facef2bee11a", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/relative-joint-human.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "439edebf-9820-4418-8803-49d680914324", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/relative-joint-linear-offset.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "dd0798f9-993a-42ea-9eca-a4a5ddbfc605", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/slider-joint.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "750cbc48-ec9a-4dfe-b53e-4ccc783fb567", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/spring-joint-damp.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "06f9fd85-eb68-4b73-a95f-90f1c011c010", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/spring-joint-frequency.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "d55714e5-b3d8-448d-856a-8e481973af4c", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/joints/wheel-joint.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "3dc4b97d-b37f-44f0-8d1e-d7ed810734d8", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/linear-impulse.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "7e1599e2-979e-4b11-a8d5-4782121219c8", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/mask.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "202d70a9-95ab-4383-b80b-76bc8127bd97", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/varing-friction.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "e9c10815-88d9-409e-86c3-3ef565bc03a2", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/example/varying-restitution.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "e460e119-78ef-43ae-8a02-854ea3dc7862", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/cases/physics-setting.ts: -------------------------------------------------------------------------------- 1 | import { PhysicsSystem2D, game, Game, EPhysics2DDrawFlags } from "cc"; 2 | 3 | game.on(Game.EVENT_GAME_INITED, () => { 4 | PhysicsSystem2D.instance.debugDrawFlags = EPhysics2DDrawFlags.Shape | EPhysics2DDrawFlags.Joint 5 | }) 6 | -------------------------------------------------------------------------------- /2d/box2d/assets/main-menu.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "3d667daf-5388-4557-a7e0-9278ad0e9d12", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/box2d/assets/main-menu/ListItem.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "576c8694-8c35-4537-9711-30b8d26a6dc8", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "ListItem" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /2d/box2d/assets/main-menu/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "e40ba74c-8687-422d-8045-debd019b34e3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/box2d/assets/main-menu/testlist.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "0.0.1", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "39db08e0-b7aa-40fd-96d4-a063f8dc2508", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /2d/box2d/assets/main-menu/testlist.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "72497614-6ff8-4b16-951c-68f9994e5a1e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/box2d/assets/main-menu/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "883ddd75-7126-4fb4-94a2-1e440a7e56ed", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/box2d/assets/main-menu/textures/exitLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/main-menu/textures/exitLeft.png -------------------------------------------------------------------------------- /2d/box2d/assets/main-menu/textures/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/main-menu/textures/left.png -------------------------------------------------------------------------------- /2d/box2d/assets/main-menu/textures/panelBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/main-menu/textures/panelBG.png -------------------------------------------------------------------------------- /2d/box2d/assets/main-menu/textures/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/main-menu/textures/right.png -------------------------------------------------------------------------------- /2d/box2d/assets/migrate-canvas.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.21", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "48ffe0e3-aad2-43c0-b95a-0997aef03097", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /2d/box2d/assets/res.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "eeeabe5d-7a3d-4b4a-9540-f84c41094da1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/box2d/assets/res/prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d3301931-2269-4c46-bc3f-c53f0d03874d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/box2d/assets/res/prefab/ArcEgg.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "f45940d4-0daf-405a-9d6e-f87eefbdb950", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "ArcEgg" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /2d/box2d/assets/res/prefab/bounding.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "b32af6c7-f779-45d9-b653-2a204177894e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "bounding" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /2d/box2d/assets/res/prefab/box40.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "8cf3fa88-3e7b-4086-ab59-0b8918a0c33e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "box40" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /2d/box2d/assets/res/prefab/box80.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "acec0373-4235-4640-8c51-530a45c69936", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "box80" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /2d/box2d/assets/res/prefab/circle20.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "6430c004-3384-46f6-9900-e1d7835dab2f", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "circle20" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /2d/box2d/assets/res/prefab/circle80.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "415387d9-299e-4270-a669-8bec46d3242d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "circle80" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ca4e29d6-624a-42e0-ac36-58d388af0fd1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/1.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/Arc90_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/Arc90_40.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/ArcEgg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/ArcEgg.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/Box20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/Box20.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/Box40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/Box40.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/Box80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/Box80.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/Circle20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/Circle20.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/Circle40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/Circle40.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/Circle80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/Circle80.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/LineArc90_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/LineArc90_40.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/Platform160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/Platform160.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/Triangle20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/Triangle20.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/Triangle40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/Triangle40.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/gold.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/goldcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/goldcoin.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/sheep_down_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/sheep_down_0.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/spr_f_ayla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/spr_f_ayla.png -------------------------------------------------------------------------------- /2d/box2d/assets/res/texture/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/box2d/assets/res/texture/star.png -------------------------------------------------------------------------------- /2d/box2d/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "physics-2d", 3 | "type": "3d", 4 | "uuid": "86019fe9-b8fe-4931-9e95-2fc2a2ac1c13", 5 | "version": "3.0.0" 6 | } 7 | -------------------------------------------------------------------------------- /2d/box2d/settings/1.2.0/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.2.5" 3 | } 4 | -------------------------------------------------------------------------------- /2d/box2d/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | /* Base configuration. Do not edit this field. */ 3 | "extends": "./temp/tsconfig.cocos.json" 4 | 5 | /* Add your custom configuration here. */ 6 | } 7 | -------------------------------------------------------------------------------- /2d/common/assets/cases.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f717f738-e11e-4aad-9d22-11653f904ae4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/common/assets/cases/hittest.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "9ece4d43-dbb2-408e-b282-28f3a1b573d2", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/common/assets/cases/mask.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "75783da5-9586-4648-98ec-44ab195d8c8d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/common/assets/cases/physics-settings.ts: -------------------------------------------------------------------------------- 1 | import { PhysicsSystem2D, game, Game, EPhysics2DDrawFlags } from "cc"; 2 | 3 | game.on(Game.EVENT_GAME_INITED, () => { 4 | PhysicsSystem2D.instance.debugDrawFlags = EPhysics2DDrawFlags.Shape | EPhysics2DDrawFlags.Joint 5 | }) 6 | -------------------------------------------------------------------------------- /2d/common/assets/cases/shape.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "c3af801c-66d1-4130-815f-1a40e0fc37d4", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/common/assets/cases/tag.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "3f9177b1-b2c6-4d0e-a000-121883f66508", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/common/assets/main-menu.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "945d88a5-6abe-4282-823a-adc882efc011", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/common/assets/main-menu/ListItem.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "576c8694-8c35-4537-9711-30b8d26a6dc8", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "ListItem" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /2d/common/assets/main-menu/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "e40ba74c-8687-422d-8045-debd019b34e3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/common/assets/main-menu/testlist.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "0.0.1", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "39db08e0-b7aa-40fd-96d4-a063f8dc2508", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /2d/common/assets/main-menu/testlist.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.27", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "72497614-6ff8-4b16-951c-68f9994e5a1e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /2d/common/assets/main-menu/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "883ddd75-7126-4fb4-94a2-1e440a7e56ed", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/common/assets/main-menu/textures/exitLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/common/assets/main-menu/textures/exitLeft.png -------------------------------------------------------------------------------- /2d/common/assets/main-menu/textures/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/common/assets/main-menu/textures/left.png -------------------------------------------------------------------------------- /2d/common/assets/main-menu/textures/panelBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/common/assets/main-menu/textures/panelBG.png -------------------------------------------------------------------------------- /2d/common/assets/main-menu/textures/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/common/assets/main-menu/textures/right.png -------------------------------------------------------------------------------- /2d/common/assets/migrate-canvas.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.21", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "169598e8-dd1d-46b4-bbb0-1e3bfa11c422", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /2d/common/assets/res.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "bf3b51bc-9d3e-4e9f-bc8c-a8d3709a7828", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/common/assets/res/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "8641e933-e0ea-43a9-9c3f-728d0ce5fca9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2d/common/assets/res/textures/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/2d/common/assets/res/textures/star.png -------------------------------------------------------------------------------- /2d/common/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "common", 3 | "type": "3d", 4 | "uuid": "e2e6bb85-e8de-4263-88ee-a711bbf3e305", 5 | "version": "3.0.0" 6 | } 7 | -------------------------------------------------------------------------------- /2d/common/settings/1.2.0/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.2.4" 3 | } 4 | -------------------------------------------------------------------------------- /2d/common/settings/3.0.0/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.2.5" 3 | } 4 | -------------------------------------------------------------------------------- /2d/common/settings/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.2.6" 3 | } 4 | -------------------------------------------------------------------------------- /2d/common/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | /* Base configuration. Do not edit this field. */ 3 | "extends": "./temp/tsconfig.cocos.json" 4 | 5 | /* Add your custom configuration here. */ 6 | } 7 | -------------------------------------------------------------------------------- /3d/.creator/asset-template/typescript/Custom Script Template Help Documentation.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://docs.cocos.com/creator/manual/en/scripting/setup.html#custom-script-template -------------------------------------------------------------------------------- /3d/assets/TestList.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "42e68f34-5f5f-4a8a-938a-ec9d5fe61b0d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b2182a12-6492-41ed-91af-07bd8eab7dd1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/animation.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "19044d3d-0dba-4a8d-bc58-e95f142a739d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/cases/materials.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "8dc0cb50-74d8-49a7-8a4c-3d4fb633df38", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/materials/box-collider.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "83e8b4c9-fff2-4bc7-ba0c-433d13f7bf6c", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/materials/control-point.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "c8f66d17-351a-48da-a12c-0212d28575c4" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [], 11 | "_props": [] 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/materials/control-point.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "2686946b-dbc8-49fa-97ae-09f274e2e247", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/materials/ground.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "871ccc33-78f9-433c-8721-1b76f3491e75", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/materials/hit-point.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "c8f66d17-351a-48da-a12c-0212d28575c4" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [], 11 | "_props": [] 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/materials/hit-point.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "b2e8eea1-1fa7-4f37-9576-407e592747f6", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/materials/line-segment.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "c8f66d17-351a-48da-a12c-0212d28575c4" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [], 11 | "_props": [] 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/materials/line-segment.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "71530215-fe45-4b7f-875b-8a00d6936d47", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/materials/sphere-collider.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "859bfec4-0185-40b2-bb4a-17085601a564", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "3ea7ff7f-4282-4f85-9ea8-6d3386e8d629", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/prefabs/AirWall.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "728dada2-7c3c-442b-a326-76ecd3a684aa", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "AirWall" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/cases/prefabs/地面.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "06d8d259-6aa1-4a5b-b1f2-a17e08f9c749", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "地面" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "633edf1a-f09c-46d8-9b48-cf88ba6a852a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-capsule-trigger.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "270190ad-834c-4e7b-a0bf-ff26982178f9", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-ccd-sphere.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "dd03f893-d2f4-49a9-a20d-b937099c73ff", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-character-controller.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "41b1a363-a827-4077-9dbe-1935cfefbcd1", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-collision-event.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "829f7c26-7234-49ed-a54d-81852654e0ff", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-constant-force.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "05ca2bdb-992f-48fa-9025-ec4d7ca972f9", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-constraint-fixed.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "67c2115c-7cca-4e4e-bfdf-088ecc924dc4", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-constraint-hinge.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "dcfacef8-d366-4689-ace6-c72987f70180", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-constraint-p2p.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "36f82f6d-0376-4313-9c62-54c719d0b274", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-contact-data.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "e4abad81-9d6f-4245-a8a9-b5410981c6cd", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-convex-colliders.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "34ee158e-32ab-483a-a7ff-fd13ad61131a", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-damping.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "6a8d5711-3032-4e18-93a3-5d363093c34d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-dynamic.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "d41110c8-a0ec-4975-9409-56a3fd3ca48b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-group-mask.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "dbac3587-c463-4a76-9664-5d7f89a0c3c7", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-jenga.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "7b8c54b7-c9b4-4ddc-9128-6fd7a667efe0", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-physics-curveCast.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "5e07632f-e5c0-4dd0-8fcc-eecea55f44ea", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-physics-sweep.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "4ecb25d2-89a3-4d80-abbb-f12adead0635", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-physics-sync.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "c4d17fb4-41d8-4efc-8290-48fec3e9c659", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-plane-collider.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "9109594b-4825-482b-8b1f-04661f8d71f8", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-rigid-collider.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "74814607-b116-412c-84ef-7db73310ebe5", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-runtime-update.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "86be0f84-46fd-4c09-bb05-66a80f15fdd5", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-trigger-event.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "6a2a9b2b-b0b3-4a9c-b989-c6b5ad042e8b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/case-velocity.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "642f85ef-a131-428a-8e87-39852a32338b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/configurable.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "8d0eb468-491c-4a6b-bff6-ad99b00c4389", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/configurable/configurable-constraint-cone-twist.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "3400931a-1a38-42c1-9d2c-812b0e3edfc7", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/configurable/configurable-constraint-fixed.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "dbecd8b4-7295-4a7f-b5cb-272751917937", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/configurable/configurable-constraint-hinge.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "1eb6d66d-acf5-48fd-bcc2-2b179e7d7653", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/configurable/configurable-constraint-p2p.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "7962a540-c154-40a1-ae41-0e4193dff4bf", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/configurable/configurable-constraint-spin-slider.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "397bbc9d-79bb-47b4-8daa-5884111bab0b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/csae-mesh-collider.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "3e3bdbdf-cc7f-45f9-92fe-638174f7696b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/csae-physics-material.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "b6218f58-1e4f-4d9e-a1df-e0e49a94ca14", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scenes/csae-physics-raycast.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "a68c6474-bbc8-4034-81c6-dfb717ef89b9", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/cases/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f323d153-befc-4f74-b590-58c1c5df1850", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/scripts/CharacterControllerTest.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "bb42fd14-07b8-484b-9ccd-677b625e8486", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/cases/scripts/CharacterControllerTriggerTest.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "b8fb1c69-bb9b-4887-8653-5c3eedf07540", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/cases/scripts/ColliderTest.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6d10bfd3-41dc-49df-bf81-cd278672f9a3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/cases/scripts/collision-detection.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "7991419e-caf9-4bae-b4af-7f218926d46f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/scripts/configurable-ctl.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f9bfd0f9-9723-46b1-a735-7a9a2ab32918", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/cases/scripts/hinge-ctl.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "b80a0bda-7a49-4d2a-a1c8-01c975ce1d43", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/cases/scripts/physics-checker.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "19b29a5a-c97c-435b-b03e-93f6f6ff1843", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/scripts/rigid-collider.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "96844a35-1b7b-4af4-8270-c6692d94fd68", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/terrains.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "12c23452-d95f-4ce7-ad8f-c216712d2d57", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/terrains/collision.terrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/cases/terrains/collision.terrain -------------------------------------------------------------------------------- /3d/assets/cases/terrains/collision.terrain.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "terrain", 4 | "imported": true, 5 | "uuid": "0e1b9a58-d732-4fe0-a20b-4971b7f13b3f", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/terrains/collisionCCT.terrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/cases/terrains/collisionCCT.terrain -------------------------------------------------------------------------------- /3d/assets/cases/terrains/collisionCCT.terrain.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "terrain", 4 | "imported": true, 5 | "uuid": "af6b525d-46f0-40f9-8794-771f81d657d6", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/cases/terrains/raycast.terrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/cases/terrains/raycast.terrain -------------------------------------------------------------------------------- /3d/assets/cases/terrains/raycast.terrain.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "terrain", 4 | "imported": true, 5 | "uuid": "0fef2bd0-044a-48c2-9291-87a3b420c46b", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "4d85a6cd-4cf8-4782-96d2-2cd3e255d986", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/convex-hull.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "759258e6-bd2c-4ef1-8d88-d999887fb86d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/effects.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "be8d897f-9ad3-41f2-98bf-808bcfa62512", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/effects/bonus-unlit.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.0", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "7ea6eb9c-85b3-4c36-9929-60bf564a4202", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/humanoid.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "e2780381-6fb3-420f-84ed-d587ba07218f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/humanoid/humanblend.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/humanoid/humanblend.glb -------------------------------------------------------------------------------- /3d/assets/common/materials.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "64e856f7-5b36-48ef-95c9-a5a036d1e8bb", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/materials/basketball_court.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "d1be1092-7afe-470d-b522-58d5fe03bcd8", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/m-bonus-cocos.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "aff81f65-1c68-47ff-919e-78ed1601241b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/m-trail-0.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "98e3db77-eac8-4718-8661-04b445eea7fa", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/m-transparent.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "c524d0aa-d924-4e4f-823f-8c29193894bd", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "bdf86575-d4a7-4e2c-a3cb-9cba05241797", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/blue-emissive-ins.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "672b7266-dbde-47b0-8833-f9bb1673ea74", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/blue-emissive.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "745820e2-81cf-4f91-bcfa-1d5d6b85768e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/blue-instancing.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "ebc22cd7-792e-4d5d-8444-4f67b36caf71", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/cyan-instancing.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "b249f58b-2892-49eb-a8ab-07e02899ea30", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/green-emissive-ins.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "97d7b6b1-554e-4f69-bc10-105df2119547", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/green-emissive.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "706b70ae-a4da-4891-bae1-d89c7ede06f4", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/green-instancing.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "bed809e5-8408-4daf-a412-7c59dbedc6e4", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/purple-emissive-ins.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "9a7950bb-1621-4210-a0d5-9362983fb267", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/purple-emissive.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "6f326fb5-b082-4bd0-abae-3b57c9ec255c", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/red-emissive-ins.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "0b58b9a4-2431-48a4-8f78-fec8c06357b1", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/red-emissive.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "1e48f43d-8c23-4ca2-9a3d-e0e5dcb0acb2", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/red-instancing.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "687b8314-9399-45c8-a6f5-11445edb0dae", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/white-emissive-ins.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "e79425c1-ade5-467c-b9a5-274e480adb81", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/white-emissive-t.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "e219e31d-873e-49f1-8726-9518dbeac8a5", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/white-emissive.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "07300663-75e0-42e6-b547-fa147e024535", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/yellow-emissive-ins.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "dcc886ed-ce7e-40ba-b3d0-def9b72d2e27", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/yellow-emissive.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "ea0c2143-04fe-48de-9591-ce812e88561b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/pure-color/yellow-instancing.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "fba24af5-95ac-458e-8f75-bf995cc11637", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/transparent.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "f85a319f-2894-4668-a1c4-a23f868fbafd", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/materials/white-emissive-quad.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "ea99fd92-52f4-474b-9f43-5f509272ac0c", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models-commonly.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "86de713e-273d-4436-bb15-d22d25a4c0a0", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models-commonly/basketball.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "3343a616-b317-4f9e-bff1-ab13736f5610", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models-commonly/basketball/bball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models-commonly/basketball/bball.jpg -------------------------------------------------------------------------------- /3d/assets/common/models-commonly/basketball/bball.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "d4a65a94-f79c-402d-971e-d821e0bda63d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models-commonly/basketball/bball_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models-commonly/basketball/bball_n.jpg -------------------------------------------------------------------------------- /3d/assets/common/models.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "4d4b9a99-c664-4eee-bb38-908ccea9a6cd", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "fe15b975-678f-4074-b1e7-2e5ee0038448", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/Cocos.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "e8111b57-d1ca-43c7-ad2b-b9c38d95f1ad", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Cocos" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b0175603-3f36-46b4-852d-b18b5060a37f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos-anim-jump-static.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/animations/cocos-anim-jump-static.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos-anim-jump-static.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "d5d458dc-3115-444f-87fd-fb85fd119d77", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_attack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/animations/cocos_anim_attack.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_attack.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "80ec500e-4e34-4eb9-97b3-c0ab36ef51a9", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_die.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/animations/cocos_anim_die.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_die.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "ed603eb9-d077-4418-b921-b88d1abb1901", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_down.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/animations/cocos_anim_down.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_down.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "7c8feff9-d632-40eb-8e53-31044ca60ea8", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_hurt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/animations/cocos_anim_hurt.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_hurt.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "1dc35df9-5bf0-441a-a186-a9a827ddc4b3", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_idle.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/animations/cocos_anim_idle.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_idle.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "14684e4f-87e8-42ae-afab-46b620d879c3", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_jump.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/animations/cocos_anim_jump.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_jump.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "7d65827e-1475-449a-ab71-b8e01da6a0dc", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_run.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/animations/cocos_anim_run.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_run.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "b64feaa3-ba2a-4ebf-a9fd-8e145668b898", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_shoot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/animations/cocos_anim_shoot.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_shoot.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "3734b834-2dfc-488d-89e4-d4cf3dab9d62", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_squat.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/animations/cocos_anim_squat.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_squat.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "a96372f6-31e1-4cdf-8cfe-ab123d3c4f29", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_walk.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/animations/cocos_anim_walk.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/animations/cocos_anim_walk.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "32a3d3ed-7f2e-4480-a210-88341c114487", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/body-instanced.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "1423b995-c890-41c0-b263-e9d9a9d04162", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/body.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "74a82b36-3faa-45aa-9812-57a4a910d9ac", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocos_skel_ibm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/cocos_skel_ibm.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocos_skel_ibm.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "9f231034-6675-4d60-aa05-0f8689b66dcf", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocosfinish_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/cocosfinish_01.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocosfinish_01.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "4b3837b4-911a-420b-a6fe-04ce09a10fe7", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocosfinish_01_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/cocosfinish_01_baseColor.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocosfinish_01_emissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/cocosfinish_01_emissive.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocosfinish_01_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/cocosfinish_01_normal.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocosfinish_01_occlusionRoughnessMetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/cocosfinish_01_occlusionRoughnessMetallic.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocosfinish_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/cocosfinish_02.bin -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocosfinish_02.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "e5c393aa-a768-4c8c-8d5d-3db50731f5b6", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocosfinish_02_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/cocosfinish_02_baseColor.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocosfinish_02_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/cocosfinish_02_normal.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/cocosfinish_02_occlusionRoughnessMetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/cocosfinish_02_occlusionRoughnessMetallic.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/helmet-instanced.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "73cbefc7-8a19-4d22-a7e9-b5b939eed131", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/helmet.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "2559f5d2-ebbc-4901-965e-47aae625e3a6", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/labels.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "1179e1b4-df54-4e23-8ce1-cce6d1aeb372", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/labels/attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/labels/attack.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/labels/die.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/labels/die.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/labels/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/labels/down.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/labels/hurt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/labels/hurt.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/labels/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/labels/idle.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/labels/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/labels/jump.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/labels/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/labels/run.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/labels/shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/labels/shoot.png -------------------------------------------------------------------------------- /3d/assets/common/models/cocos/labels/squat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/cocos/labels/squat.png -------------------------------------------------------------------------------- /3d/assets/common/models/customer.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f118593a-cbe1-4ab5-8c5d-f50eab6c9982", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/duck.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "2fdcefcc-7930-49cf-9715-c687f28cc7dc", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/duck/Duck0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/duck/Duck0.bin -------------------------------------------------------------------------------- /3d/assets/common/models/duck/Duck0.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "92303f88-4916-4224-9de9-50450bd91486", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/duck/DuckCM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/duck/DuckCM.png -------------------------------------------------------------------------------- /3d/assets/common/models/house.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d6beeefc-442c-4a4b-aed2-59fa7b955e02", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/house/house01.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/house/house01.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/house/house01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/house/house01.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/house/house02.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/house/house02.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/house/house02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/house/house02.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/minibus.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ba149b54-6e4d-4b31-8c71-a3b3ab6346f5", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/minibus/chvan_texture_chrome_nrm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/minibus/chvan_texture_chrome_nrm.png -------------------------------------------------------------------------------- /3d/assets/common/models/minibus/chvan_texture_dff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/minibus/chvan_texture_dff.png -------------------------------------------------------------------------------- /3d/assets/common/models/minibus/chvan_texture_nrm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/minibus/chvan_texture_nrm.png -------------------------------------------------------------------------------- /3d/assets/common/models/minibus/minibus.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/minibus/minibus.bin -------------------------------------------------------------------------------- /3d/assets/common/models/minibus/minibus.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "5033dcc8-fd32-4fa8-9f25-bc38d317ce65", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/minibus/rimstock_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/minibus/rimstock_04.png -------------------------------------------------------------------------------- /3d/assets/common/models/minibus/ucb_bottom3_bump_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/minibus/ucb_bottom3_bump_NRM.png -------------------------------------------------------------------------------- /3d/assets/common/models/plane.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b23e172b-e55a-472a-aef7-f7a51a08a383", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/plane/Materials_plane01.FBX/Material #116.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "afec29a2-474f-4ce0-b89e-d8e2ce060510", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/plane/Materials_plane01.FBX/Material--116.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "36877139-cd57-4deb-bc1e-72be8adbeb16", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/plane/Materials_plane01.FBX/Material50x50.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "82d90b5b-0e48-4e89-b13c-e08d16d8edb6", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/plane/Materials_plane01/Material #116.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "f1b6938c-3d83-433e-beb9-5f397d8aab36", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/plane/plane01.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/plane/plane01.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/plane/plane01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/plane/plane01.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/road.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "dc7f3151-3aeb-4fba-89f0-c9edbbba92ba", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/road/road01.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/road/road01.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/road/road01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/road/road01.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/road/road02.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/road/road02.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/road/road02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/road/road02.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/road/road03.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/road/road03.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/road/road03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/road/road03.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/road/road04.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/road/road04.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/road/road05.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/road/road05.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/road/road06.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/road/road06.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/road/road07.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/road/road07.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/road/road08.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/road/road08.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/sign.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "52cc57d9-56dd-4803-8098-ba89ee4db203", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/sign/Materials_end.FBX/Material #91.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "d15a5377-acfb-4538-9d46-cc3e73380534", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/sign/Materials_end.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "da4e30be-6a71-4c88-8c20-d75b7b1606c2", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/sign/Materials_end/Material #91.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "ce4f24a4-7a7e-4042-95dd-5b2c75b82c4e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/sign/Materials_start.FBX/Material #93.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "1983c364-0229-45bb-a50d-b28c8d173947", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/sign/Materials_start/Material #93.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "819ef22b-03ef-4f38-a6d3-eba958d2e76c", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/sign/end.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/sign/end.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/sign/end.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/sign/end.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/sign/sign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/sign/sign.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/sign/sign01.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/sign/sign01.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/sign/sign02.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/sign/sign02.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/sign/start.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/sign/start.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/sign/start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/sign/start.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/skala-stone.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a4cc5919-6c6b-49d0-892f-7f0768826001", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/skala-stone/Materials_Skala-Stone/skala-low.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "f83cbfce-f6f9-4aac-9a3c-5d1f238de0d6", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/skala-stone/Skala-Stone.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/skala-stone/Skala-Stone.bin -------------------------------------------------------------------------------- /3d/assets/common/models/skala-stone/Skala-Stone.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "c6c96074-68ef-47c6-bd2b-170e51f6c8df", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/skala-stone/skala-low-diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/skala-stone/skala-low-diffuse.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/skala-stone/skala-low-normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/skala-stone/skala-low-normal.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/suzanne.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "85cbff29-fdd7-48b4-9615-cb769edd37bb", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/suzanne/Materials_Suzanne/Suzanne.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "4df74edc-cfc7-4081-8120-a8cd8927232d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/suzanne/Suzanne.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/suzanne/Suzanne.bin -------------------------------------------------------------------------------- /3d/assets/common/models/suzanne/Suzanne.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "3902c7a0-aec2-429c-8088-bea5277b669a", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/suzanne/Suzanne_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/suzanne/Suzanne_BaseColor.png -------------------------------------------------------------------------------- /3d/assets/common/models/suzanne/Suzanne_MetallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/suzanne/Suzanne_MetallicRoughness.png -------------------------------------------------------------------------------- /3d/assets/common/models/taxi07.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "272298f4-11bd-4537-bae2-05327687d755", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/taxi07/Materials_taxi07.FBX/Material #26.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "9516c61c-5d24-47c1-aebb-360002f166b3", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/taxi07/Materials_taxi07/Material #26.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "47efac53-3619-4cb8-afc2-3aa9d039fbce", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/taxi07/taxi07.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/taxi07/taxi07.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/taxi07/taxi07Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/taxi07/taxi07Black.png -------------------------------------------------------------------------------- /3d/assets/common/models/taxi07/taxi07White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/taxi07/taxi07White.png -------------------------------------------------------------------------------- /3d/assets/common/models/tree.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "beae43ee-13f4-4e0c-ba5c-b3d828135c95", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/tree/stone01.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/tree/stone01.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/tree/stone01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/tree/stone01.png -------------------------------------------------------------------------------- /3d/assets/common/models/tree/stone02.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/tree/stone02.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/tree/stone02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/tree/stone02.png -------------------------------------------------------------------------------- /3d/assets/common/models/tree/tree01.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/tree/tree01.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/tree/tree02.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/tree/tree02.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/tree/trees01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/tree/trees01.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/truck.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "af438862-7a36-4986-9b2d-ad9fd19fdc88", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/models/truck/Materials_truck02.FBX/Material #28.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "6bc7005a-5c4c-4747-9149-3fbf1c6f9bf5", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/truck/Materials_truck02.FBX/blue.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "c4be0f98-2ef6-4b76-bd55-e16ba39f78fd", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/truck/Materials_truck02.FBX/pink.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "969efbda-fab2-480e-b6dc-17fc6b4b2590", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/truck/Materials_truck02.FBX/silvery.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "aacef7ca-a04c-4beb-947d-c87e1ff05731", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/truck/Materials_truck02/Material #28.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "7680eb29-0bf5-47e7-af2f-d11b81554dbe", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/models/truck/truck01.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/truck/truck01.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/truck/truck01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/truck/truck01.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/truck/truck02.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/truck/truck02.FBX -------------------------------------------------------------------------------- /3d/assets/common/models/truck/truck02Blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/truck/truck02Blue.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/truck/truck02Pink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/truck/truck02Pink.jpg -------------------------------------------------------------------------------- /3d/assets/common/models/truck/truck02Silvery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/models/truck/truck02Silvery.jpg -------------------------------------------------------------------------------- /3d/assets/common/physics-checker.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f88c029b-0373-43d9-bf93-f748f9c1ec6d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/physics-materials.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f8906d28-7fdd-4453-89a9-e8c08d3525b7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/physics-materials/one-zero.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicsMaterial", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_friction": 1, 7 | "_rollingFriction": 1, 8 | "_spinningFriction": 1, 9 | "_restitution": 0 10 | } -------------------------------------------------------------------------------- /3d/assets/common/physics-materials/one-zero.pmtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "importer": "physics-material", 4 | "imported": true, 5 | "uuid": "ecad2908-7a47-4dcd-8f83-c580e5102f89", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/physics-materials/one.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicMaterial", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_friction": 1, 7 | "_restitution": 1 8 | } -------------------------------------------------------------------------------- /3d/assets/common/physics-materials/one.pmtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "importer": "physics-material", 4 | "imported": true, 5 | "uuid": "075f603e-988a-45c2-a4d2-b1f26f636643", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/physics-materials/zero-one.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicMaterial", 3 | "_name": "", 4 | "_objFlags": 1, 5 | "_native": "", 6 | "_friction": 0, 7 | "_restitution": 1 8 | } -------------------------------------------------------------------------------- /3d/assets/common/physics-materials/zero-one.pmtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "importer": "physics-material", 4 | "imported": true, 5 | "uuid": "f634725d-2eb7-4977-9744-bf2f004d1239", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/physics-materials/zero.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicMaterial", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_friction": 0, 7 | "_rollingFriction": 0, 8 | "_spinningFriction": 0, 9 | "_restitution": 0 10 | } -------------------------------------------------------------------------------- /3d/assets/common/physics-materials/zero.pmtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "importer": "physics-material", 4 | "imported": true, 5 | "uuid": "f5f4ecd5-20f0-4e16-aec5-e4a87c1e7d01", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/common/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ab8da4d3-f7c4-4cee-9ab1-983b52b9e388", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/scripts/CharacterControllerHelper.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6ca8e012-d23b-4ca7-88c6-48bc12a036b8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/common/scripts/CurveCastHelper.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "8420623e-e9ec-490b-8250-b28b65682744", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/common/scripts/Noise.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "420c4b94-f9dc-4011-8615-94e01ca0e7f7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/common/scripts/SweepHelper.ts.meta: -------------------------------------------------------------------------------- 1 | {"ver":"4.0.23","importer":"typescript","imported":true,"uuid":"9aa38cfc-7041-44b2-ba5f-988d89a3cab3","files":[],"subMetas":{},"userData":{}} 2 | -------------------------------------------------------------------------------- /3d/assets/common/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "958b023b-c665-4997-ab19-2beded14746d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/common/textures/000881.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/textures/000881.png -------------------------------------------------------------------------------- /3d/assets/common/textures/basketball_court.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/common/textures/basketball_court.jpeg -------------------------------------------------------------------------------- /3d/assets/demo.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "33e1f7fb-ec95-4041-9c23-add2daf71392", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/benchmark.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "27e308eb-e676-404c-9e82-5df07d8bf2b1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/benchmark/demo-benchmark.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "3caed01d-34fb-47cf-8267-1cdb5182647a", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/benchmark/materials.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "32581859-d7e9-42df-bdf7-4ef33325ae72", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/benchmark/materials/ground.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "a431cc6f-2378-43e5-896b-fce26e37f6a9", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/benchmark/materials/rb.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "31c20887-4bf9-4e94-808e-2947f17aaf27", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/benchmark/materials/sb.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "8a2c46e1-f65f-4a2b-8264-bcfee3a05c19", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/benchmark/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "3224e9c6-cefd-4ee5-b5c4-9d225d2f1910", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/benchmark/prefabs/Box-RB.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "74690640-bc5d-4f89-9eb0-390a46a146db", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Box-RB" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/demo/benchmark/prefabs/Box.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "91a3d107-cbc0-49b4-9679-380143afaddf", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Box" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/demo/benchmark/prefabs/Sphere.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "7ba73fbc-c089-458d-bf99-a955cc63d023", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Sphere" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/demo/benchmark/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "85d70e4d-5859-4d28-9d4f-fa61310d2853", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/buoyancy.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ea675050-2fa3-4461-801f-86695a830f84", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/buoyancy/Buoyancy.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "00abe8e3-1600-44c6-b71b-369a556687ef", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/demo/buoyancy/WaterWaves.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "fba29c78-0113-40b4-ab77-2fe1891883d6", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/demo/buoyancy/demo-buoyancy.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.48", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "ea79fc80-3902-41c2-bc9f-c5cd3429d383", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/buoyancy/materials.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "4ed862ec-4deb-48da-8338-ac4d5cb5ef74", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/buoyancy/materials/Wall.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "0876b024-0369-4594-af3f-77b3748857c8", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/buoyancy/materials/Water.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "dd0fd09a-22af-4854-b923-8c7137d1e06b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/buoyancy/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f75e6eb0-0347-479d-b4ce-88b0f13bdbae", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/buoyancy/textures/tiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/buoyancy/textures/tiles.jpg -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "2e61853c-cd82-4c8b-94c5-d36b0bf68bca", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball/demo-falling-ball.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "16a1a925-add2-41b2-97db-1ef7958846f0", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball/materials.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b9a104e7-e692-4c7b-ba83-72b41a52882d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball/materials/m-cube-red.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "dac7cc58-0901-4e79-b25b-540d0ef87acb", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball/materials/m-cube.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "66871211-d31a-49da-82b6-48561400ddf3", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball/materials/m-floor-flag.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "7c4002e7-36ae-44ae-9dc0-4288f696ecb0", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a83045b5-ff03-4ae3-856d-6656dd05463a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball/prefabs/Cube.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "10a53fe7-b06f-4e61-a8e3-bdec4a42bb16", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Cube" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "9516bc11-b6eb-409b-9478-11c33f8bcdcc", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "9fce3f7f-e2e5-4625-b119-3899ee22fd47", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball/textures/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/falling-ball/textures/128x128.png -------------------------------------------------------------------------------- /3d/assets/demo/falling-ball/textures/cocos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/falling-ball/textures/cocos.jpg -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "c2c83a8b-2c84-43c9-a8fd-8ee5a8360bee", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/demo-roll-a-ball.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "bc01cca4-da47-4c1d-9567-6af6aded1ce4", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/materials.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "3ebd2438-d66c-4a87-bbf2-141ffd2d06f3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/materials/ball.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicMaterial", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_friction": 0.5, 7 | "_rollingFriction": 0.1, 8 | "_spinningFriction": 0.1, 9 | "_restitution": 0 10 | } -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/materials/ball.pmtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "importer": "physics-material", 4 | "imported": true, 5 | "uuid": "fb399343-ef8f-4731-944b-1b056d437799", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/materials/m1.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "f9196e7b-b425-4904-b8fe-5f32c713b03b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/materials/m2.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "34428b53-1cd9-4d50-8e5d-e6b6d9680f77", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/materials/m3.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "090a0b7a-7ba4-4b61-a238-319717ddf837", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/materials/m4.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "061d082e-886a-4a7a-8fea-88fc196f43de", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/materials/m5.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "7618738c-0715-4e46-b32c-6f8b8cd30a05", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a387539d-7628-4849-a0a6-9a2df40ba6d4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/prefabs/Bonus.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "90e8afb4-42e2-4a5c-8c64-5eeb3dd095cd", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Bonus" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "bb407d81-af0a-4fa1-b059-60f5a484791a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "8db0785d-5fac-4427-b0d8-ece6aadd082f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/textures/[2K]ChristmasTreeOrnament03/ChristmasTreeOrnament03_col.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/roll-a-ball/textures/[2K]ChristmasTreeOrnament03/ChristmasTreeOrnament03_col.jpg -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/textures/[2K]ChristmasTreeOrnament03/ChristmasTreeOrnament03_disp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/roll-a-ball/textures/[2K]ChristmasTreeOrnament03/ChristmasTreeOrnament03_disp.jpg -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/textures/[2K]ChristmasTreeOrnament03/ChristmasTreeOrnament03_met.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/roll-a-ball/textures/[2K]ChristmasTreeOrnament03/ChristmasTreeOrnament03_met.jpg -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/textures/[2K]ChristmasTreeOrnament03/ChristmasTreeOrnament03_nrm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/roll-a-ball/textures/[2K]ChristmasTreeOrnament03/ChristmasTreeOrnament03_nrm.jpg -------------------------------------------------------------------------------- /3d/assets/demo/roll-a-ball/textures/[2K]ChristmasTreeOrnament03/ChristmasTreeOrnament03_rgh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/roll-a-ball/textures/[2K]ChristmasTreeOrnament03/ChristmasTreeOrnament03_rgh.jpg -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "de17de87-37aa-4aee-b8fd-f0380f526f71", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/demo-simple-bow.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "58293f30-5f3f-4385-8adf-651cebaa773e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/materials.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "5cfa8053-bf1f-4a9f-b009-3ec4d14c82cd", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "0d4e0512-aadf-44e1-be42-0e83aa88400d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/bow_and_arrow_rigged/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/bow_and_arrow_rigged/scene.bin -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/bow_and_arrow_rigged/scene.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "9d981846-965c-4a3a-95a1-4ef022d208e7", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/bow_and_arrow_rigged/textures/Arrow_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/bow_and_arrow_rigged/textures/Arrow_baseColor.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/bow_and_arrow_rigged/textures/material_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/bow_and_arrow_rigged/textures/material_baseColor.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/cross.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "16519020-9bec-4a75-936d-1cc9eda84c1e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/cross/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/cross/scene.bin -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/cross/scene.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "8310b7ac-0bf6-452e-94d6-29ca423cfd10", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/cross/textures/Material_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/cross/textures/Material_baseColor.jpeg -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/cross/textures/Material_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/cross/textures/Material_metallicRoughness.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/cross/textures/Material_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/cross/textures/Material_normal.jpeg -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/Materials_scene/BLACK.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "02c369d8-b6e0-4fe4-af69-6d2ed0f8fcdb", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/Materials_scene/BRICKS_23.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "e9ea7bac-f430-4d00-92de-8227c676fd50", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/Materials_scene/BRICKS_25.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "bb35785a-e8fc-4ba6-a8a4-2cbb61dd95ca", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/Materials_scene/FABRIC_01.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "fa69e2cc-e08d-480f-ac04-5124e782b735", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/Materials_scene/PLASTER_19.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "6dd3ebcb-e51c-407f-8087-6eeb12fdec18", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/Materials_scene/SAND_02.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "93f59e46-1836-4073-ba48-8d461fbca850", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/Materials_scene/STONE_10.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "2839ea54-8435-47ec-ac3a-879ea33a6d23", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/Materials_scene/WOOD_06.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "80cc7740-d865-47ae-a011-bb22441f1196", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/license.txt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "importer": "text", 4 | "imported": true, 5 | "uuid": "388fd3a2-8695-4eb5-a9cf-5dafbf4a2df2", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/scene.bin -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/scene.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "c858a47d-6ccd-4aec-8081-a618aac21135", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_23_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_23_baseColor.jpeg -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_23_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_23_metallicRoughness.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_23_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_23_normal.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_25_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_25_baseColor.jpeg -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_25_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_25_metallicRoughness.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_25_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/BRICKS_25_normal.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/FABRIC_01_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/FABRIC_01_baseColor.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/FABRIC_01_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/FABRIC_01_normal.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/PLASTER_19_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/PLASTER_19_baseColor.jpeg -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/PLASTER_19_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/PLASTER_19_metallicRoughness.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/PLASTER_19_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/PLASTER_19_normal.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/SAND_02_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/SAND_02_baseColor.jpeg -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/SAND_02_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/SAND_02_metallicRoughness.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/SAND_02_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/SAND_02_normal.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/STONE_10_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/STONE_10_baseColor.jpeg -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/STONE_10_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/STONE_10_metallicRoughness.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/STONE_10_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/STONE_10_normal.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/WOOD_06_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/WOOD_06_baseColor.jpeg -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/WOOD_06_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/WOOD_06_metallicRoughness.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/desert_house_01_free/textures/WOOD_06_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/desert_house_01_free/textures/WOOD_06_normal.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/hex.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "29ec53a0-585f-4ecc-8607-509f57ebcc7d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/hex/Hex.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/hex/Hex.glb -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/hex/Materials_Hex/Default OBJ.006.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "be183ac2-89f9-47d9-b5ca-4720997b5235", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/red_apple.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "28811119-5430-4e64-b3a5-51374518c0bc", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/red_apple/Materials_scene/Apple_Baked.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "30b95af7-6f78-41ad-9750-cc6a3c5c900e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/red_apple/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/red_apple/scene.bin -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/red_apple/scene.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "dd60a0de-5f37-45d5-9c56-0adea22c3630", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/red_apple/textures/Apple_Baked_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/red_apple/textures/Apple_Baked_baseColor.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/red_apple/textures/Apple_Baked_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/red_apple/textures/Apple_Baked_metallicRoughness.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/models/red_apple/textures/Apple_Baked_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-bow/models/red_apple/textures/Apple_Baked_normal.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a9af6877-f9ba-4471-8e4a-c429ff2f2fce", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/prefabs/Cross.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "f8eee3a9-3050-4351-8ce3-3bc159fd2c13", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Cross" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/prefabs/Hex.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "e955e5d2-43ee-4398-8043-67c1455b9056", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Hex" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "4db50a6e-533b-4d8d-9aa5-ff8035ad2859", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/scripts/GenerateHexMap.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "9e371681-6382-4e80-bf4b-eb1ed79e655d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "simulateGlobals": [] 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-bow/scripts/RiggedBow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "30252bec-e7bc-4982-bfcb-fe71c7bc4785", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "simulateGlobals": [] 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "3aa05468-f526-48a0-a496-fb1485266b68", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/Role.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "0ba746b2-8ec4-4ec8-a1e6-38df5b08b150", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Role" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/demo-simple-car.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "d261d234-acb5-425c-9597-3606704d0470", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/editor-only.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "1b507e1b-e869-442d-b4a6-848645bbd0a2", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/editor-only/BonusEdit.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "87a54ec4-2389-4aa3-a3a3-ea4180c247aa", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/editor-only/MapCocos.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "f8612108-60ed-4d24-9948-6b6ad8f7c7bd", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/materials.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a5d258cf-6e99-466e-a916-075e1f511ed4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/materials/m1.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "e89ac5e1-6b2e-4739-8260-3d02b3675fa3", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/materials/m2.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "41b1a5be-b719-445f-a590-47fc26d0d250", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/materials/m3.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "63c1d08f-6daf-44ea-91b1-91de85152a7a", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/materials/m4.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "279a2106-a647-4d77-911a-488c336a4b49", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/materials/mf.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "7535c356-664b-4c97-b392-cb07e1a78558", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/materials/mp-road-helper.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "f6d01675-f8ee-4105-8903-0a101d1eb1ef", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/materials/mp.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "91bf62a0-af45-4314-b793-afeab3b916f8", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "0975b82b-4b99-4d88-8d00-6369d71764ab", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/scripts/const.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "6640d5b8-553b-4306-9d2e-b5965ad1baeb", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/scripts/debug.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "9b78c85c-2273-43e6-b970-53a596ea52e3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/scripts/gameplay.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b11a665a-831a-4a32-b9ac-f38424f0c63c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/sprites.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "8949357c-7e44-47bb-a901-728d2f322223", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/sprites/Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-car/sprites/Arrow.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "c04891a0-84a8-490e-81c7-a34947eb71cc", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/textures/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-car/textures/128x128.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/textures/cocos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-car/textures/cocos.jpg -------------------------------------------------------------------------------- /3d/assets/demo/simple-car/textures/road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/demo/simple-car/textures/road.png -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "7b648005-25de-461a-8ccf-ef0a1c6ddf3b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/demo-simple-hole.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "5ae812e7-6a09-4bff-9809-ed3255b28b67", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/materials.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ac0eb85c-c704-4e1f-97c6-f9560d318edf", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/materials/m1.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "096b475a-66d2-45f1-b05a-e3a0de44a7c4", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/materials/m2.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "defc303d-2470-4d83-99d9-49351adcd2cb", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/materials/m3.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "6f0aa1f6-df0b-40be-94c8-9dd49206b173", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/materials/m4.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "7a65b33b-856d-4cdd-992c-332fa4bc65b2", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/materials/mh-debug.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "b6546946-ffee-44fb-8c93-c1022514a748", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/materials/mh.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "4abf0315-ae4f-4c79-a9c4-eb4f6ab9702b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/materials/mp-debug.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "3c14f28f-fb15-4573-a08f-037207b10b20", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/materials/mp.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "2cd6d989-f2b6-4705-9c77-f0c0f452fd28", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "2d9e08fc-41fb-4a72-b564-c74568e2c523", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/prefabs/Cube.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "14e85871-41f6-4339-a8c6-1a3145051028", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Cube" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/prefabs/Sphere.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "0723c0e2-e368-427c-8855-9d1932253db6", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "Sphere" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a70d8c99-09e5-4f47-96ab-379dfe9c8486", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/scripts/debug.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a91fe165-e190-45f1-8096-5b302464b137", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/scripts/gameplay.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a576e5d2-603c-4c1c-bea0-41045b9488f7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/demo/simple-hole/scripts/gameplay/EGroupMask.ts: -------------------------------------------------------------------------------- 1 | import { Enum } from "cc"; 2 | 3 | export enum EGroup { 4 | G_PLANE = 1 << 0, 5 | G_ROLE = 1 << 1, 6 | G_BODY = 1 << 2 7 | } 8 | Enum(EGroup); -------------------------------------------------------------------------------- /3d/assets/experiment.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b210eb87-8e12-421e-a6ff-b9c7108413d0", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/experiment/character-controller/ep-character-controller.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "5431fbda-79d6-4cfe-8131-d28801035231", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/constraint.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "0597b7d1-4d17-460e-88dd-63445b6173ce", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/experiment/constraint/materials/color0.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "7b01c9d6-e059-43f8-94c2-35ee6f1e7402", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/constraint/materials/color1.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "57e1ba11-0503-46d4-b978-c3ee85feb04d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/constraint/materials/color2.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "609978cd-8db6-4b48-a7a1-ad5624555ea1", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/constraint/materials/color3.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "a4d36693-5dfd-44c7-834e-109d545b3507", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/constraint/materials/pivot.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "e5f68392-5698-4ee9-8a81-bb6c000c6467", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/constraint/scenes.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ea3818dc-6487-4f4b-993b-8bf4d36a26ed", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/experiment/constraint/scenes/ep-constraint-hinge.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "f30b9326-f164-49c9-8f7f-8003acbb43fe", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/constraint/scenes/ep-constraint-p2p.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "6465e2db-0f6f-4d49-b6e5-e91d478a69db", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/rolling-friction/ep-rolling-friction.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "cb00350b-eece-4983-894d-b5f64e97be76", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/rolling-friction/rolling-0.5.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicMaterial", 3 | "_name": "", 4 | "_objFlags": 1, 5 | "_native": "", 6 | "_friction": 0.5, 7 | "_rollingFriction": 0.5, 8 | "_spinningFriction": 0.1, 9 | "_restitution": 0.1 10 | } -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/rolling-friction/rolling-0.5.pmtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "importer": "physics-material", 4 | "imported": true, 5 | "uuid": "35d1b624-5595-45f0-ad2b-d2fdb42e2a94", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/rolling-friction/rolling-0.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicMaterial", 3 | "_name": "", 4 | "_objFlags": 1, 5 | "_native": "", 6 | "_friction": 0.5, 7 | "_rollingFriction": 0, 8 | "_spinningFriction": 0.1, 9 | "_restitution": 0.1 10 | } -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/rolling-friction/rolling-0.pmtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "importer": "physics-material", 4 | "imported": true, 5 | "uuid": "d25a149d-0506-49ac-8ae8-fdd5322fa536", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/rolling-friction/rolling-1.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicMaterial", 3 | "_name": "", 4 | "_objFlags": 1, 5 | "_native": "", 6 | "_friction": 0.5, 7 | "_rollingFriction": 1, 8 | "_spinningFriction": 0.1, 9 | "_restitution": 0.1 10 | } -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/rolling-friction/rolling-1.pmtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "importer": "physics-material", 4 | "imported": true, 5 | "uuid": "412c1723-faa0-4445-ab16-10682cb02e73", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/spinning-friction/spinning-0.25.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicMaterial", 3 | "_name": "", 4 | "_objFlags": 1, 5 | "_native": "", 6 | "_friction": 0.5, 7 | "_rollingFriction": 0.1, 8 | "_spinningFriction": 0.25, 9 | "_restitution": 0.1 10 | } -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/spinning-friction/spinning-0.5.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicMaterial", 3 | "_name": "", 4 | "_objFlags": 1, 5 | "_native": "", 6 | "_friction": 0.5, 7 | "_rollingFriction": 0.1, 8 | "_spinningFriction": 0.5, 9 | "_restitution": 0.1 10 | } -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/spinning-friction/spinning-0.75.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicMaterial", 3 | "_name": "", 4 | "_objFlags": 1, 5 | "_native": "", 6 | "_friction": 0.5, 7 | "_rollingFriction": 0.1, 8 | "_spinningFriction": 0.75, 9 | "_restitution": 0.1 10 | } -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/spinning-friction/spinning-1.pmtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.PhysicMaterial", 3 | "_name": "", 4 | "_objFlags": 1, 5 | "_native": "", 6 | "_friction": 0.5, 7 | "_rollingFriction": 0.1, 8 | "_spinningFriction": 1, 9 | "_restitution": 0.1 10 | } -------------------------------------------------------------------------------- /3d/assets/experiment/physics-material-plus/spinning-friction/spinning-1.pmtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "importer": "physics-material", 4 | "imported": true, 5 | "uuid": "32ffe8bc-2e65-486e-9de7-f69a17360d61", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/misc.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b047d114-c18e-4644-a7ae-3a7433801834", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/misc/TestList.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "613d25b7-e5f2-4d18-a075-919d63a2f22a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/misc/TestList/ListItem.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "1963b45b-619d-4a78-8ea2-1df525345e1d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "ListItem" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/misc/TestList/exitLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/misc/TestList/exitLeft.png -------------------------------------------------------------------------------- /3d/assets/misc/TestList/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/misc/TestList/left.png -------------------------------------------------------------------------------- /3d/assets/misc/TestList/panelBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/misc/TestList/panelBG.png -------------------------------------------------------------------------------- /3d/assets/misc/TestList/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/misc/TestList/right.png -------------------------------------------------------------------------------- /3d/assets/misc/checks.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "26914b33-7818-44ce-aba1-4d1839bd1bbd", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/misc/checks/builtin.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "2c7f1c42-8b5b-498e-9972-1214b3236d84", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "builtin" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/misc/checks/bullet.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "e20a39a0-80e8-4643-ba1d-13a35c705e9a", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "bullet" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /3d/assets/resources/common.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "5eab6382-a228-4368-9b78-d2572d323e46", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /3d/assets/resources/common/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "1b659fde-dce4-4b26-9a40-1841f04a8204", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/resources/simple-car.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "bb400e86-d24e-478a-9b18-d2b52d7ee491", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/resources/simple-car/map.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "52eddfc3-0f7a-455f-9b92-929cd1877216", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/resources/simple-car/map/MapCocos.json.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.0", 3 | "importer": "json", 4 | "imported": true, 5 | "uuid": "ca4daa81-81d2-41ce-85ec-fcce6b85c151", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /3d/assets/resources/simple-car/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "37a89f50-f3f3-4eea-a830-275789872f61", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3d/assets/sweep.terrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-physics/6ad9ebfec0d7ef1d31f294b2f8ae1973ad0a3388/3d/assets/sweep.terrain -------------------------------------------------------------------------------- /3d/assets/sweep.terrain.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "terrain", 4 | "imported": true, 5 | "uuid": "b0eabc0e-7928-42f0-a823-63a67eebfb11", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /3d/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "physics-3d", 3 | "type": "3d", 4 | "uuid": "a152bce6-db31-4763-83a1-c93ff3e8d40d", 5 | "version": "3.8.0", 6 | "creator": { 7 | "version": "3.8.0" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /3d/settings/1.2.0/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "projectSetting": {}, 3 | "__version__": "1.2.4" 4 | } 5 | -------------------------------------------------------------------------------- /3d/settings/1.2.0/packages/preview.json: -------------------------------------------------------------------------------- 1 | { 2 | "previewConfig": { 3 | "start_scene": "42e68f34-5f5f-4a8a-938a-ec9d5fe61b0d" 4 | }, 5 | "__version__": "1.0.0" 6 | } 7 | -------------------------------------------------------------------------------- /3d/settings/3.0.0/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "projectSetting": {}, 3 | "__version__": "1.2.5" 4 | } 5 | -------------------------------------------------------------------------------- /3d/settings/3.0.0/packages/preview.json: -------------------------------------------------------------------------------- 1 | { 2 | "previewConfig": { 3 | "start_scene": "42e68f34-5f5f-4a8a-938a-ec9d5fe61b0d" 4 | }, 5 | "__version__": "1.0.0" 6 | } 7 | -------------------------------------------------------------------------------- /3d/settings/packages/preview.json: -------------------------------------------------------------------------------- 1 | { 2 | "previewConfig": { 3 | "start_scene": "42e68f34-5f5f-4a8a-938a-ec9d5fe61b0d" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /3d/settings/packages/project-setting.json: -------------------------------------------------------------------------------- 1 | { 2 | "general": { 3 | "designResolution": { 4 | "fitHeight": true, 5 | "fitWidth": false, 6 | "width": 960, 7 | "height": 640 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /3d/settings/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /3d/settings/v2/packages/preview.json: -------------------------------------------------------------------------------- 1 | { 2 | "previewConfig": { 3 | "start_scene": "42e68f34-5f5f-4a8a-938a-ec9d5fe61b0d" 4 | }, 5 | "__version__": "1.0.1" 6 | } 7 | -------------------------------------------------------------------------------- /3d/settings/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.3" 3 | } 4 | --------------------------------------------------------------------------------