@bloomengine/engine 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +169 -0
- package/native/android/Cargo.lock +1848 -0
- package/native/android/Cargo.toml +20 -0
- package/native/android/src/lib.rs +1747 -0
- package/native/ios/Cargo.lock +1688 -0
- package/native/ios/Cargo.toml +19 -0
- package/native/ios/src/lib.rs +2258 -0
- package/native/linux/Cargo.lock +1719 -0
- package/native/linux/Cargo.toml +22 -0
- package/native/linux/src/lib.rs +2236 -0
- package/native/macos/Cargo.lock +3310 -0
- package/native/macos/Cargo.toml +29 -0
- package/native/macos/src/lib.rs +3444 -0
- package/native/shared/Cargo.lock +1898 -0
- package/native/shared/Cargo.toml +42 -0
- package/native/shared/assets/default_font.ttf +0 -0
- package/native/shared/build.rs +77 -0
- package/native/shared/shaders/common/fog.wgsl +16 -0
- package/native/shared/shaders/common/imposter.wgsl +112 -0
- package/native/shared/shaders/common/pbr.wgsl +186 -0
- package/native/shared/shaders/common/shadows.wgsl +77 -0
- package/native/shared/shaders/common/sky.wgsl +8 -0
- package/native/shared/shaders/common/tonemap.wgsl +25 -0
- package/native/shared/shaders/impulse_field.wgsl +53 -0
- package/native/shared/shaders/material_abi.wgsl +360 -0
- package/native/shared/shaders/materials/test_minimal.wgsl +42 -0
- package/native/shared/src/audio.rs +363 -0
- package/native/shared/src/custom_shaders.rs +104 -0
- package/native/shared/src/drs.rs +211 -0
- package/native/shared/src/engine.rs +186 -0
- package/native/shared/src/frame_callbacks.rs +88 -0
- package/native/shared/src/geometry.rs +236 -0
- package/native/shared/src/handles.rs +76 -0
- package/native/shared/src/input.rs +273 -0
- package/native/shared/src/jolt_sys.rs +822 -0
- package/native/shared/src/lib.rs +43 -0
- package/native/shared/src/models.rs +1941 -0
- package/native/shared/src/physics_jolt.rs +1528 -0
- package/native/shared/src/picking.rs +298 -0
- package/native/shared/src/postfx.rs +339 -0
- package/native/shared/src/profiler.rs +416 -0
- package/native/shared/src/renderer/atmosphere_lut.rs +573 -0
- package/native/shared/src/renderer/brdf_lut.rs +154 -0
- package/native/shared/src/renderer/formats.rs +778 -0
- package/native/shared/src/renderer/graph.rs +465 -0
- package/native/shared/src/renderer/hot_reload.rs +390 -0
- package/native/shared/src/renderer/impulse_field.rs +455 -0
- package/native/shared/src/renderer/material_pipeline.rs +604 -0
- package/native/shared/src/renderer/material_system.rs +2106 -0
- package/native/shared/src/renderer/mod.rs +13923 -0
- package/native/shared/src/renderer/planar_reflection.rs +458 -0
- package/native/shared/src/renderer/post_pass.rs +249 -0
- package/native/shared/src/renderer/shader_include.rs +205 -0
- package/native/shared/src/renderer/shader_library.rs +134 -0
- package/native/shared/src/renderer/shaders.rs +5855 -0
- package/native/shared/src/renderer/transient.rs +576 -0
- package/native/shared/src/renderer/types.rs +259 -0
- package/native/shared/src/renderer/util.rs +151 -0
- package/native/shared/src/scene.rs +1066 -0
- package/native/shared/src/sdf_cache.rs +274 -0
- package/native/shared/src/shadows.rs +551 -0
- package/native/shared/src/staging.rs +90 -0
- package/native/shared/src/string_header.rs +35 -0
- package/native/shared/src/text_renderer.rs +456 -0
- package/native/shared/src/textures.rs +154 -0
- package/native/third_party/JoltPhysics/Jolt/AABBTree/AABBTreeBuilder.cpp +242 -0
- package/native/third_party/JoltPhysics/Jolt/AABBTree/AABBTreeBuilder.h +121 -0
- package/native/third_party/JoltPhysics/Jolt/AABBTree/AABBTreeToBuffer.h +296 -0
- package/native/third_party/JoltPhysics/Jolt/AABBTree/NodeCodec/NodeCodecQuadTreeHalfFloat.h +323 -0
- package/native/third_party/JoltPhysics/Jolt/AABBTree/TriangleCodec/TriangleCodecIndexed8BitPackSOA4Flags.h +555 -0
- package/native/third_party/JoltPhysics/Jolt/ConfigurationString.h +112 -0
- package/native/third_party/JoltPhysics/Jolt/Core/ARMNeon.h +94 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Array.h +713 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Atomics.h +44 -0
- package/native/third_party/JoltPhysics/Jolt/Core/BinaryHeap.h +96 -0
- package/native/third_party/JoltPhysics/Jolt/Core/ByteBuffer.h +74 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Color.cpp +38 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Color.h +98 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Core.h +652 -0
- package/native/third_party/JoltPhysics/Jolt/Core/FPControlWord.h +143 -0
- package/native/third_party/JoltPhysics/Jolt/Core/FPException.h +96 -0
- package/native/third_party/JoltPhysics/Jolt/Core/FPFlushDenormals.h +43 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Factory.cpp +92 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Factory.h +54 -0
- package/native/third_party/JoltPhysics/Jolt/Core/FixedSizeFreeList.h +122 -0
- package/native/third_party/JoltPhysics/Jolt/Core/FixedSizeFreeList.inl +215 -0
- package/native/third_party/JoltPhysics/Jolt/Core/HashCombine.h +234 -0
- package/native/third_party/JoltPhysics/Jolt/Core/HashTable.h +876 -0
- package/native/third_party/JoltPhysics/Jolt/Core/InsertionSort.h +58 -0
- package/native/third_party/JoltPhysics/Jolt/Core/IssueReporting.cpp +27 -0
- package/native/third_party/JoltPhysics/Jolt/Core/IssueReporting.h +38 -0
- package/native/third_party/JoltPhysics/Jolt/Core/JobSystem.h +311 -0
- package/native/third_party/JoltPhysics/Jolt/Core/JobSystem.inl +56 -0
- package/native/third_party/JoltPhysics/Jolt/Core/JobSystemSingleThreaded.cpp +65 -0
- package/native/third_party/JoltPhysics/Jolt/Core/JobSystemSingleThreaded.h +62 -0
- package/native/third_party/JoltPhysics/Jolt/Core/JobSystemThreadPool.cpp +364 -0
- package/native/third_party/JoltPhysics/Jolt/Core/JobSystemThreadPool.h +101 -0
- package/native/third_party/JoltPhysics/Jolt/Core/JobSystemWithBarrier.cpp +230 -0
- package/native/third_party/JoltPhysics/Jolt/Core/JobSystemWithBarrier.h +85 -0
- package/native/third_party/JoltPhysics/Jolt/Core/LinearCurve.cpp +51 -0
- package/native/third_party/JoltPhysics/Jolt/Core/LinearCurve.h +67 -0
- package/native/third_party/JoltPhysics/Jolt/Core/LockFreeHashMap.h +182 -0
- package/native/third_party/JoltPhysics/Jolt/Core/LockFreeHashMap.inl +351 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Memory.cpp +85 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Memory.h +85 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Mutex.h +223 -0
- package/native/third_party/JoltPhysics/Jolt/Core/MutexArray.h +98 -0
- package/native/third_party/JoltPhysics/Jolt/Core/NonCopyable.h +18 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Profiler.cpp +677 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Profiler.h +301 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Profiler.inl +90 -0
- package/native/third_party/JoltPhysics/Jolt/Core/QuickSort.h +137 -0
- package/native/third_party/JoltPhysics/Jolt/Core/RTTI.cpp +149 -0
- package/native/third_party/JoltPhysics/Jolt/Core/RTTI.h +436 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Reference.h +244 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Result.h +174 -0
- package/native/third_party/JoltPhysics/Jolt/Core/STLAlignedAllocator.h +72 -0
- package/native/third_party/JoltPhysics/Jolt/Core/STLAllocator.h +127 -0
- package/native/third_party/JoltPhysics/Jolt/Core/STLLocalAllocator.h +170 -0
- package/native/third_party/JoltPhysics/Jolt/Core/STLTempAllocator.h +80 -0
- package/native/third_party/JoltPhysics/Jolt/Core/ScopeExit.h +49 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Semaphore.cpp +135 -0
- package/native/third_party/JoltPhysics/Jolt/Core/Semaphore.h +68 -0
- package/native/third_party/JoltPhysics/Jolt/Core/StaticArray.h +329 -0
- package/native/third_party/JoltPhysics/Jolt/Core/StreamIn.h +120 -0
- package/native/third_party/JoltPhysics/Jolt/Core/StreamOut.h +97 -0
- package/native/third_party/JoltPhysics/Jolt/Core/StreamUtils.h +168 -0
- package/native/third_party/JoltPhysics/Jolt/Core/StreamWrapper.h +53 -0
- package/native/third_party/JoltPhysics/Jolt/Core/StridedPtr.h +63 -0
- package/native/third_party/JoltPhysics/Jolt/Core/StringTools.cpp +101 -0
- package/native/third_party/JoltPhysics/Jolt/Core/StringTools.h +38 -0
- package/native/third_party/JoltPhysics/Jolt/Core/TempAllocator.h +209 -0
- package/native/third_party/JoltPhysics/Jolt/Core/TickCounter.cpp +37 -0
- package/native/third_party/JoltPhysics/Jolt/Core/TickCounter.h +58 -0
- package/native/third_party/JoltPhysics/Jolt/Core/UnorderedMap.h +80 -0
- package/native/third_party/JoltPhysics/Jolt/Core/UnorderedSet.h +32 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/AABox.h +313 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/AABox4.h +224 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/ClipPoly.h +200 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/ClosestPoint.h +498 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/ConvexHullBuilder.cpp +1467 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/ConvexHullBuilder.h +276 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/ConvexHullBuilder2D.cpp +335 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/ConvexHullBuilder2D.h +105 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/ConvexSupport.h +188 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/EPAConvexHullBuilder.h +845 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/EPAPenetrationDepth.h +557 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/Ellipse.h +77 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/GJKClosestPoint.h +945 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/IndexedTriangle.h +130 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/Indexify.cpp +222 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/Indexify.h +19 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/MortonCode.h +40 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/OrientedBox.cpp +178 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/OrientedBox.h +39 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/Plane.h +104 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/RayAABox.h +241 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/RayCapsule.h +37 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/RayCylinder.h +101 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/RaySphere.h +96 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/RayTriangle.h +158 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/Sphere.h +72 -0
- package/native/third_party/JoltPhysics/Jolt/Geometry/Triangle.h +34 -0
- package/native/third_party/JoltPhysics/Jolt/Jolt.cmake +703 -0
- package/native/third_party/JoltPhysics/Jolt/Jolt.h +16 -0
- package/native/third_party/JoltPhysics/Jolt/Jolt.natvis +116 -0
- package/native/third_party/JoltPhysics/Jolt/Math/BVec16.h +99 -0
- package/native/third_party/JoltPhysics/Jolt/Math/BVec16.inl +177 -0
- package/native/third_party/JoltPhysics/Jolt/Math/DMat44.h +158 -0
- package/native/third_party/JoltPhysics/Jolt/Math/DMat44.inl +310 -0
- package/native/third_party/JoltPhysics/Jolt/Math/DVec3.h +291 -0
- package/native/third_party/JoltPhysics/Jolt/Math/DVec3.inl +941 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Double3.h +48 -0
- package/native/third_party/JoltPhysics/Jolt/Math/DynMatrix.h +31 -0
- package/native/third_party/JoltPhysics/Jolt/Math/EigenValueSymmetric.h +177 -0
- package/native/third_party/JoltPhysics/Jolt/Math/FindRoot.h +42 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Float2.h +36 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Float3.h +50 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Float4.h +44 -0
- package/native/third_party/JoltPhysics/Jolt/Math/GaussianElimination.h +102 -0
- package/native/third_party/JoltPhysics/Jolt/Math/HalfFloat.h +208 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Mat44.h +243 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Mat44.inl +952 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Math.h +208 -0
- package/native/third_party/JoltPhysics/Jolt/Math/MathTypes.h +32 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Matrix.h +259 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Quat.h +268 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Quat.inl +406 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Real.h +44 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Swizzle.h +19 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Trigonometry.h +79 -0
- package/native/third_party/JoltPhysics/Jolt/Math/UVec4.h +232 -0
- package/native/third_party/JoltPhysics/Jolt/Math/UVec4.inl +636 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Vec3.cpp +71 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Vec3.h +308 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Vec3.inl +942 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Vec4.h +320 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Vec4.inl +1152 -0
- package/native/third_party/JoltPhysics/Jolt/Math/Vector.h +211 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/GetPrimitiveTypeOfType.h +54 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStream.cpp +38 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStream.h +337 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamBinaryIn.cpp +252 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamBinaryIn.h +57 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamBinaryOut.cpp +165 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamBinaryOut.h +57 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamIn.cpp +635 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamIn.h +148 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamOut.cpp +166 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamOut.h +101 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamTextIn.cpp +418 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamTextIn.h +55 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamTextOut.cpp +255 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamTextOut.h +62 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamTypes.h +26 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/SerializableAttribute.h +111 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/SerializableAttributeEnum.h +67 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/SerializableAttributeTyped.h +60 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/SerializableObject.cpp +15 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/SerializableObject.h +170 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/TypeDeclarations.cpp +70 -0
- package/native/third_party/JoltPhysics/Jolt/ObjectStream/TypeDeclarations.h +45 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/AllowedDOFs.h +68 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/Body.cpp +426 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/Body.h +452 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/Body.inl +197 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyAccess.h +68 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyActivationListener.h +28 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyCreationSettings.cpp +234 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyCreationSettings.h +124 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyFilter.h +130 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyID.h +101 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyInterface.cpp +1099 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyInterface.h +324 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyLock.h +111 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyLockInterface.h +134 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyLockMulti.h +120 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyManager.cpp +1220 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyManager.h +403 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyPair.h +36 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyType.h +19 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/MassProperties.cpp +185 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/MassProperties.h +58 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/MotionProperties.cpp +92 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/MotionProperties.h +308 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/MotionProperties.inl +178 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/MotionQuality.h +31 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Body/MotionType.h +17 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Character/Character.cpp +354 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Character/Character.h +159 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Character/CharacterBase.cpp +59 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Character/CharacterBase.h +157 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Character/CharacterID.h +98 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Character/CharacterVirtual.cpp +1933 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Character/CharacterVirtual.h +752 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/AABoxCast.h +20 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ActiveEdgeMode.h +17 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ActiveEdges.h +114 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BackFaceMode.h +16 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhase.cpp +16 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhase.h +109 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseBruteForce.cpp +313 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseBruteForce.h +38 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseLayer.h +148 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseLayerInterfaceMask.h +92 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseLayerInterfaceTable.h +64 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseQuadTree.cpp +629 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseQuadTree.h +108 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseQuery.h +56 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/ObjectVsBroadPhaseLayerFilterMask.h +35 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/ObjectVsBroadPhaseLayerFilterTable.h +66 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/QuadTree.cpp +1768 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/QuadTree.h +389 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CastConvexVsTriangles.cpp +107 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CastConvexVsTriangles.h +46 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CastResult.h +37 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CastSphereVsTriangles.cpp +223 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CastSphereVsTriangles.h +49 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollectFacesMode.h +16 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideConvexVsTriangles.cpp +155 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideConvexVsTriangles.h +56 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollidePointResult.h +25 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideShape.h +106 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideShapeVsShapePerLeaf.h +94 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideSoftBodyVertexIterator.h +110 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideSoftBodyVerticesVsTriangles.h +102 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideSphereVsTriangles.cpp +121 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideSphereVsTriangles.h +50 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionCollector.h +109 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionCollectorImpl.h +219 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionDispatch.cpp +107 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionDispatch.h +97 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionGroup.cpp +35 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionGroup.h +97 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ContactListener.h +143 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/EstimateCollisionResponse.cpp +213 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/EstimateCollisionResponse.h +48 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/GroupFilter.cpp +32 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/GroupFilter.h +46 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/GroupFilterTable.cpp +38 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/GroupFilterTable.h +130 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/InternalEdgeRemovingCollector.h +279 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ManifoldBetweenTwoFaces.cpp +271 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ManifoldBetweenTwoFaces.h +44 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/NarrowPhaseQuery.cpp +448 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/NarrowPhaseQuery.h +77 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/NarrowPhaseStats.cpp +62 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/NarrowPhaseStats.h +110 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ObjectLayer.h +111 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ObjectLayerPairFilterMask.h +52 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ObjectLayerPairFilterTable.h +78 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/PhysicsMaterial.cpp +35 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/PhysicsMaterial.h +57 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/PhysicsMaterialSimple.cpp +38 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/PhysicsMaterialSimple.h +37 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/RayCast.h +87 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/BoxShape.cpp +318 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/BoxShape.h +115 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CapsuleShape.cpp +438 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CapsuleShape.h +129 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CompoundShape.cpp +433 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CompoundShape.h +354 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CompoundShapeVisitors.h +461 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ConvexHullShape.cpp +1311 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ConvexHullShape.h +202 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ConvexShape.cpp +566 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ConvexShape.h +150 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CylinderShape.cpp +418 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CylinderShape.h +126 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/DecoratedShape.cpp +87 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/DecoratedShape.h +80 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/EmptyShape.cpp +64 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/EmptyShape.h +75 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/GetTrianglesContext.h +248 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/HeightFieldShape.cpp +2754 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/HeightFieldShape.h +380 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/MeshShape.cpp +1305 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/MeshShape.h +228 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/MutableCompoundShape.cpp +596 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/MutableCompoundShape.h +176 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/OffsetCenterOfMassShape.cpp +217 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/OffsetCenterOfMassShape.h +140 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/PlaneShape.cpp +541 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/PlaneShape.h +147 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/PolyhedronSubmergedVolumeCalculator.h +319 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/RotatedTranslatedShape.cpp +333 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/RotatedTranslatedShape.h +161 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ScaleHelpers.h +83 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ScaledShape.cpp +238 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ScaledShape.h +145 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/Shape.cpp +325 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/Shape.h +466 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/SphereShape.cpp +347 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/SphereShape.h +125 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/StaticCompoundShape.cpp +674 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/StaticCompoundShape.h +139 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/SubShapeID.h +138 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/SubShapeIDPair.h +65 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TaperedCapsuleShape.cpp +453 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TaperedCapsuleShape.gliffy +1 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TaperedCapsuleShape.h +135 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TaperedCylinderShape.cpp +691 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TaperedCylinderShape.h +132 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TriangleShape.cpp +430 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TriangleShape.h +143 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ShapeCast.h +173 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ShapeFilter.h +73 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/SimShapeFilter.h +40 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/SimShapeFilterWrapper.h +58 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/SortReverseAndStore.h +48 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/TransformedShape.cpp +180 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Collision/TransformedShape.h +194 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/CalculateSolverSteps.h +70 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConeConstraint.cpp +246 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConeConstraint.h +133 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/Constraint.cpp +73 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/Constraint.h +243 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintManager.cpp +289 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintManager.h +100 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/AngleConstraintPart.h +257 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/AxisConstraintPart.h +682 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/DualAxisConstraintPart.h +276 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/GearConstraintPart.h +195 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/HingeRotationConstraintPart.h +222 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/IndependentAxisConstraintPart.h +246 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/PointConstraintPart.h +239 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/RackAndPinionConstraintPart.h +196 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/RotationEulerConstraintPart.h +283 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/RotationQuatConstraintPart.h +246 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/SpringPart.h +169 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/SwingTwistConstraintPart.h +597 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ContactConstraintManager.cpp +1804 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ContactConstraintManager.h +524 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/DistanceConstraint.cpp +266 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/DistanceConstraint.h +120 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/FixedConstraint.cpp +215 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/FixedConstraint.h +96 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/GearConstraint.cpp +188 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/GearConstraint.h +116 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/HingeConstraint.cpp +443 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/HingeConstraint.h +205 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/MotorSettings.cpp +43 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/MotorSettings.h +66 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraint.cpp +458 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraint.h +191 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraintPath.cpp +85 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraintPath.h +76 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraintPathHermite.cpp +308 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraintPathHermite.h +54 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PointConstraint.cpp +157 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PointConstraint.h +94 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PulleyConstraint.cpp +253 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PulleyConstraint.h +137 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/RackAndPinionConstraint.cpp +189 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/RackAndPinionConstraint.h +118 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SixDOFConstraint.cpp +900 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SixDOFConstraint.h +289 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SliderConstraint.cpp +501 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SliderConstraint.h +198 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SpringSettings.cpp +35 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SpringSettings.h +70 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SwingTwistConstraint.cpp +524 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SwingTwistConstraint.h +197 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/TwoBodyConstraint.cpp +56 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/TwoBodyConstraint.h +65 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/DeterminismLog.cpp +17 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/DeterminismLog.h +159 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/EActivation.h +16 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/EPhysicsUpdateError.h +37 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/IslandBuilder.cpp +492 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/IslandBuilder.h +144 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/LargeIslandSplitter.cpp +582 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/LargeIslandSplitter.h +187 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsLock.h +169 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsScene.cpp +261 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsScene.h +104 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsSettings.h +125 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsStepListener.h +37 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsSystem.cpp +2915 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsSystem.h +391 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsUpdateContext.cpp +25 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsUpdateContext.h +176 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Ragdoll/Ragdoll.cpp +744 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Ragdoll/Ragdoll.h +245 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyContactListener.h +55 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyCreationSettings.cpp +128 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyCreationSettings.h +75 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyManifold.h +74 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyMotionProperties.cpp +1501 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyMotionProperties.h +333 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyShape.cpp +354 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyShape.h +73 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodySharedSettings.cpp +1487 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodySharedSettings.h +390 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyUpdateContext.h +63 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyVertex.h +36 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/StateRecorder.h +136 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/StateRecorderImpl.cpp +90 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/StateRecorderImpl.h +50 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/MotorcycleController.cpp +306 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/MotorcycleController.h +119 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/TrackedVehicleController.cpp +547 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/TrackedVehicleController.h +169 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleAntiRollBar.cpp +33 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleAntiRollBar.h +33 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleCollisionTester.cpp +376 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleCollisionTester.h +146 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleConstraint.cpp +703 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleConstraint.h +252 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleController.cpp +17 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleController.h +87 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleDifferential.cpp +81 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleDifferential.h +39 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleEngine.cpp +122 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleEngine.h +93 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleTrack.cpp +52 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleTrack.h +56 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleTransmission.cpp +159 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleTransmission.h +87 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/Wheel.cpp +93 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/Wheel.h +148 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/WheeledVehicleController.cpp +866 -0
- package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/WheeledVehicleController.h +205 -0
- package/native/third_party/JoltPhysics/Jolt/RegisterTypes.cpp +204 -0
- package/native/third_party/JoltPhysics/Jolt/RegisterTypes.h +29 -0
- package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRenderer.cpp +1107 -0
- package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRenderer.h +383 -0
- package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererPlayback.cpp +168 -0
- package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererPlayback.h +48 -0
- package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererRecorder.cpp +158 -0
- package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererRecorder.h +130 -0
- package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererSimple.cpp +80 -0
- package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererSimple.h +88 -0
- package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletalAnimation.cpp +165 -0
- package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletalAnimation.h +91 -0
- package/native/third_party/JoltPhysics/Jolt/Skeleton/Skeleton.cpp +82 -0
- package/native/third_party/JoltPhysics/Jolt/Skeleton/Skeleton.h +72 -0
- package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletonMapper.cpp +237 -0
- package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletonMapper.h +145 -0
- package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletonPose.cpp +87 -0
- package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletonPose.h +82 -0
- package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitter.cpp +73 -0
- package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitter.h +84 -0
- package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitterBinning.cpp +139 -0
- package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitterBinning.h +52 -0
- package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitterMean.cpp +43 -0
- package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitterMean.h +28 -0
- package/native/third_party/JoltPhysics/LICENSE +7 -0
- package/native/third_party/JoltPhysics/README.md +173 -0
- package/native/third_party/bloom_jolt/CMakeLists.txt +78 -0
- package/native/third_party/bloom_jolt/include/bloom_jolt.h +519 -0
- package/native/third_party/bloom_jolt/src/bloom_jolt.cpp +1780 -0
- package/native/tvos/Cargo.lock +1692 -0
- package/native/tvos/Cargo.toml +22 -0
- package/native/tvos/src/lib.rs +3179 -0
- package/native/watchos/Cargo.lock +16 -0
- package/native/watchos/Cargo.toml +19 -0
- package/native/watchos/shaders/bloom_postfx.metal +99 -0
- package/native/watchos/src/BloomWatchApp.swift +1236 -0
- package/native/watchos/src/BloomWatchAudio.swift +179 -0
- package/native/watchos/src/audio.rs +55 -0
- package/native/watchos/src/draw_list.rs +223 -0
- package/native/watchos/src/ffi_stubs.rs +454 -0
- package/native/watchos/src/lib.rs +1013 -0
- package/native/watchos/src/models.rs +746 -0
- package/native/watchos/src/postfx.rs +91 -0
- package/native/watchos/src/scene.rs +534 -0
- package/native/watchos/src/textures.rs +184 -0
- package/native/web/Cargo.lock +1656 -0
- package/native/web/Cargo.toml +38 -0
- package/native/web/bloom_glue.js +218 -0
- package/native/web/build.sh +101 -0
- package/native/web/index.html +390 -0
- package/native/web/jolt_bridge.js +1311 -0
- package/native/web/src/lib.rs +2739 -0
- package/native/windows/Cargo.lock +1813 -0
- package/native/windows/Cargo.toml +31 -0
- package/native/windows/src/lib.rs +1933 -0
- package/package.json +558 -0
- package/src/audio/index.ts +151 -0
- package/src/core/colors.ts +56 -0
- package/src/core/index.ts +903 -0
- package/src/core/keys.ts +63 -0
- package/src/core/types.ts +102 -0
- package/src/index.ts +158 -0
- package/src/math/index.ts +502 -0
- package/src/mobile/index.ts +294 -0
- package/src/models/index.ts +859 -0
- package/src/physics/index.ts +1072 -0
- package/src/scene/index.ts +570 -0
- package/src/shapes/index.ts +120 -0
- package/src/text/index.ts +48 -0
- package/src/textures/index.ts +173 -0
- package/src/world/index.ts +22 -0
- package/src/world/loader.ts +385 -0
- package/src/world/prefab.ts +205 -0
- package/src/world/saver.ts +61 -0
- package/src/world/terrain.ts +254 -0
- package/src/world/types.ts +136 -0
- package/src/world/validate.ts +202 -0
- package/src/world/version.ts +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,558 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bloomengine/engine",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Bloom Engine: native TypeScript game engine compiled by Perry",
|
|
5
|
+
"main": "src/index.ts",
|
|
6
|
+
"types": "src/index.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./src/index.ts",
|
|
9
|
+
"./core": "./src/core/index.ts",
|
|
10
|
+
"./shapes": "./src/shapes/index.ts",
|
|
11
|
+
"./text": "./src/text/index.ts",
|
|
12
|
+
"./audio": "./src/audio/index.ts",
|
|
13
|
+
"./math": "./src/math/index.ts",
|
|
14
|
+
"./textures": "./src/textures/index.ts",
|
|
15
|
+
"./models": "./src/models/index.ts",
|
|
16
|
+
"./mobile": "./src/mobile/index.ts",
|
|
17
|
+
"./scene": "./src/scene/index.ts",
|
|
18
|
+
"./physics": "./src/physics/index.ts",
|
|
19
|
+
"./world": "./src/world/index.ts"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"src/",
|
|
23
|
+
"perry.config.ts",
|
|
24
|
+
"native/shared/Cargo.toml",
|
|
25
|
+
"native/shared/Cargo.lock",
|
|
26
|
+
"native/shared/build.rs",
|
|
27
|
+
"native/shared/src/**",
|
|
28
|
+
"native/shared/shaders/**",
|
|
29
|
+
"native/shared/assets/**",
|
|
30
|
+
"native/macos/Cargo.toml",
|
|
31
|
+
"native/macos/Cargo.lock",
|
|
32
|
+
"native/macos/src/**",
|
|
33
|
+
"native/ios/Cargo.toml",
|
|
34
|
+
"native/ios/Cargo.lock",
|
|
35
|
+
"native/ios/src/**",
|
|
36
|
+
"native/tvos/Cargo.toml",
|
|
37
|
+
"native/tvos/Cargo.lock",
|
|
38
|
+
"native/tvos/src/**",
|
|
39
|
+
"native/watchos/Cargo.toml",
|
|
40
|
+
"native/watchos/Cargo.lock",
|
|
41
|
+
"native/watchos/src/**",
|
|
42
|
+
"native/watchos/shaders/**",
|
|
43
|
+
"native/windows/Cargo.toml",
|
|
44
|
+
"native/windows/Cargo.lock",
|
|
45
|
+
"native/windows/src/**",
|
|
46
|
+
"native/linux/Cargo.toml",
|
|
47
|
+
"native/linux/Cargo.lock",
|
|
48
|
+
"native/linux/src/**",
|
|
49
|
+
"native/android/Cargo.toml",
|
|
50
|
+
"native/android/Cargo.lock",
|
|
51
|
+
"native/android/src/**",
|
|
52
|
+
"native/web/Cargo.toml",
|
|
53
|
+
"native/web/Cargo.lock",
|
|
54
|
+
"native/web/src/**",
|
|
55
|
+
"native/web/build.sh",
|
|
56
|
+
"native/web/index.html",
|
|
57
|
+
"native/web/bloom_glue.js",
|
|
58
|
+
"native/web/jolt_bridge.js",
|
|
59
|
+
"native/third_party/bloom_jolt/CMakeLists.txt",
|
|
60
|
+
"native/third_party/bloom_jolt/include/**",
|
|
61
|
+
"native/third_party/bloom_jolt/src/**",
|
|
62
|
+
"native/third_party/JoltPhysics/Jolt/**",
|
|
63
|
+
"native/third_party/JoltPhysics/LICENSE",
|
|
64
|
+
"native/third_party/JoltPhysics/README.md"
|
|
65
|
+
],
|
|
66
|
+
"scripts": {
|
|
67
|
+
"prepack": "scripts/prepack.sh"
|
|
68
|
+
},
|
|
69
|
+
"keywords": [
|
|
70
|
+
"bloom",
|
|
71
|
+
"game-engine",
|
|
72
|
+
"perry",
|
|
73
|
+
"typescript",
|
|
74
|
+
"native",
|
|
75
|
+
"wgpu",
|
|
76
|
+
"metal",
|
|
77
|
+
"directx",
|
|
78
|
+
"vulkan",
|
|
79
|
+
"webgpu",
|
|
80
|
+
"jolt",
|
|
81
|
+
"physics"
|
|
82
|
+
],
|
|
83
|
+
"license": "MIT",
|
|
84
|
+
"repository": {
|
|
85
|
+
"type": "git",
|
|
86
|
+
"url": "git+https://github.com/Bloom-Engine/engine.git"
|
|
87
|
+
},
|
|
88
|
+
"bugs": {
|
|
89
|
+
"url": "https://github.com/Bloom-Engine/engine/issues"
|
|
90
|
+
},
|
|
91
|
+
"homepage": "https://github.com/Bloom-Engine/engine#readme",
|
|
92
|
+
"publishConfig": {
|
|
93
|
+
"access": "public"
|
|
94
|
+
},
|
|
95
|
+
"perry": {
|
|
96
|
+
"nativeLibrary": {
|
|
97
|
+
"module": "@bloomengine/engine",
|
|
98
|
+
"functions": [
|
|
99
|
+
{ "name": "bloom_init_window", "params": ["f64", "f64", "i64", "f64"], "returns": "void" },
|
|
100
|
+
{ "name": "bloom_close_window", "params": [], "returns": "void" },
|
|
101
|
+
{ "name": "bloom_window_should_close", "params": [], "returns": "f64" },
|
|
102
|
+
{ "name": "bloom_begin_drawing", "params": [], "returns": "void" },
|
|
103
|
+
{ "name": "bloom_end_drawing", "params": [], "returns": "void" },
|
|
104
|
+
{ "name": "bloom_take_screenshot", "params": ["i64"], "returns": "void" },
|
|
105
|
+
{ "name": "bloom_clear_background", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
106
|
+
{ "name": "bloom_set_env_clear_from_hdr", "params": ["i64"], "returns": "void" },
|
|
107
|
+
{ "name": "bloom_set_target_fps", "params": ["f64"], "returns": "void" },
|
|
108
|
+
{ "name": "bloom_set_direct_2d_mode", "params": ["f64"], "returns": "void" },
|
|
109
|
+
{ "name": "bloom_get_delta_time", "params": [], "returns": "f64" },
|
|
110
|
+
{ "name": "bloom_get_fps", "params": [], "returns": "f64" },
|
|
111
|
+
{ "name": "bloom_get_screen_width", "params": [], "returns": "f64" },
|
|
112
|
+
{ "name": "bloom_get_screen_height", "params": [], "returns": "f64" },
|
|
113
|
+
{ "name": "bloom_is_key_pressed", "params": ["f64"], "returns": "f64" },
|
|
114
|
+
{ "name": "bloom_is_key_down", "params": ["f64"], "returns": "f64" },
|
|
115
|
+
{ "name": "bloom_is_key_released", "params": ["f64"], "returns": "f64" },
|
|
116
|
+
{ "name": "bloom_get_mouse_x", "params": [], "returns": "f64" },
|
|
117
|
+
{ "name": "bloom_get_mouse_y", "params": [], "returns": "f64" },
|
|
118
|
+
{ "name": "bloom_is_mouse_button_pressed", "params": ["f64"], "returns": "f64" },
|
|
119
|
+
{ "name": "bloom_is_mouse_button_down", "params": ["f64"], "returns": "f64" },
|
|
120
|
+
{ "name": "bloom_is_mouse_button_released", "params": ["f64"], "returns": "f64" },
|
|
121
|
+
|
|
122
|
+
{ "name": "bloom_draw_line", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
123
|
+
{ "name": "bloom_draw_rect", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
124
|
+
{ "name": "bloom_draw_rect_lines", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
125
|
+
{ "name": "bloom_draw_circle", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
126
|
+
{ "name": "bloom_draw_circle_lines", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
127
|
+
{ "name": "bloom_draw_triangle", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
128
|
+
{ "name": "bloom_draw_poly", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
129
|
+
|
|
130
|
+
{ "name": "bloom_draw_text", "params": ["i64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
131
|
+
{ "name": "bloom_measure_text", "params": ["i64", "f64"], "returns": "f64" },
|
|
132
|
+
{ "name": "bloom_load_font", "params": ["i64", "f64"], "returns": "f64" },
|
|
133
|
+
{ "name": "bloom_unload_font", "params": ["f64"], "returns": "void" },
|
|
134
|
+
{ "name": "bloom_draw_text_ex", "params": ["f64", "i64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
135
|
+
{ "name": "bloom_measure_text_ex", "params": ["f64", "i64", "f64", "f64"], "returns": "f64" },
|
|
136
|
+
|
|
137
|
+
{ "name": "bloom_init_audio", "params": [], "returns": "void" },
|
|
138
|
+
{ "name": "bloom_close_audio", "params": [], "returns": "void" },
|
|
139
|
+
{ "name": "bloom_load_sound", "params": ["i64"], "returns": "f64" },
|
|
140
|
+
{ "name": "bloom_play_sound", "params": ["f64"], "returns": "void" },
|
|
141
|
+
{ "name": "bloom_stop_sound", "params": ["f64"], "returns": "void" },
|
|
142
|
+
{ "name": "bloom_set_sound_volume", "params": ["f64", "f64"], "returns": "void" },
|
|
143
|
+
{ "name": "bloom_set_master_volume", "params": ["f64"], "returns": "void" },
|
|
144
|
+
{ "name": "bloom_play_sound_3d", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
145
|
+
{ "name": "bloom_set_listener_position", "params": ["f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
146
|
+
|
|
147
|
+
{ "name": "bloom_load_texture", "params": ["i64"], "returns": "f64" },
|
|
148
|
+
{ "name": "bloom_unload_texture", "params": ["f64"], "returns": "void" },
|
|
149
|
+
{ "name": "bloom_draw_texture", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
150
|
+
{ "name": "bloom_draw_texture_rec", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
151
|
+
{ "name": "bloom_draw_texture_pro", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
152
|
+
{ "name": "bloom_get_texture_width", "params": ["f64"], "returns": "f64" },
|
|
153
|
+
{ "name": "bloom_get_texture_height", "params": ["f64"], "returns": "f64" },
|
|
154
|
+
{ "name": "bloom_load_image", "params": ["i64"], "returns": "f64" },
|
|
155
|
+
{ "name": "bloom_image_resize", "params": ["f64", "f64", "f64"], "returns": "void" },
|
|
156
|
+
{ "name": "bloom_image_crop", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
157
|
+
{ "name": "bloom_image_flip_h", "params": ["f64"], "returns": "void" },
|
|
158
|
+
{ "name": "bloom_image_flip_v", "params": ["f64"], "returns": "void" },
|
|
159
|
+
{ "name": "bloom_load_texture_from_image", "params": ["f64"], "returns": "f64" },
|
|
160
|
+
{ "name": "bloom_gen_texture_mipmaps", "params": ["f64"], "returns": "void" },
|
|
161
|
+
{ "name": "bloom_set_texture_filter", "params": ["f64", "f64"], "returns": "void" },
|
|
162
|
+
|
|
163
|
+
{ "name": "bloom_begin_mode_2d", "params": ["f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
164
|
+
{ "name": "bloom_end_mode_2d", "params": [], "returns": "void" },
|
|
165
|
+
{ "name": "bloom_begin_mode_3d", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
166
|
+
{ "name": "bloom_end_mode_3d", "params": [], "returns": "void" },
|
|
167
|
+
|
|
168
|
+
{ "name": "bloom_draw_cube", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
169
|
+
{ "name": "bloom_draw_cube_wires", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
170
|
+
{ "name": "bloom_draw_sphere", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
171
|
+
{ "name": "bloom_draw_sphere_wires", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
172
|
+
{ "name": "bloom_draw_cylinder", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
173
|
+
{ "name": "bloom_draw_plane", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
174
|
+
{ "name": "bloom_draw_grid", "params": ["f64", "f64"], "returns": "void" },
|
|
175
|
+
{ "name": "bloom_draw_ray", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
176
|
+
|
|
177
|
+
{ "name": "bloom_load_model", "params": ["i64"], "returns": "f64" },
|
|
178
|
+
{ "name": "bloom_draw_model", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
179
|
+
{ "name": "bloom_draw_model_rotated", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
180
|
+
{ "name": "bloom_unload_model", "params": ["f64"], "returns": "void" },
|
|
181
|
+
{ "name": "bloom_gen_mesh_cube", "params": ["f64", "f64", "f64"], "returns": "f64" },
|
|
182
|
+
{ "name": "bloom_gen_mesh_heightmap", "params": ["f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
183
|
+
{ "name": "bloom_load_shader", "params": ["i64"], "returns": "f64" },
|
|
184
|
+
{ "name": "bloom_compile_material", "params": ["i64"], "returns": "f64" },
|
|
185
|
+
{ "name": "bloom_compile_material_refractive", "params": ["i64"], "returns": "f64" },
|
|
186
|
+
{ "name": "bloom_compile_material_transparent","params": ["i64"], "returns": "f64" },
|
|
187
|
+
{ "name": "bloom_compile_material_additive", "params": ["i64"], "returns": "f64" },
|
|
188
|
+
{ "name": "bloom_compile_material_cutout", "params": ["i64"], "returns": "f64" },
|
|
189
|
+
{ "name": "bloom_compile_material_instanced", "params": ["i64"], "returns": "f64" },
|
|
190
|
+
{ "name": "bloom_create_instance_buffer", "params": ["i64", "f64"], "returns": "f64" },
|
|
191
|
+
{ "name": "bloom_submit_material_draw_instanced", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
192
|
+
{ "name": "bloom_destroy_instance_buffer", "params": ["f64"], "returns": "void" },
|
|
193
|
+
{ "name": "bloom_create_planar_reflection", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
194
|
+
{ "name": "bloom_set_material_reflection_probe", "params": ["f64", "f64"], "returns": "void" },
|
|
195
|
+
{ "name": "bloom_create_texture_array", "params": ["i64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
196
|
+
{ "name": "bloom_create_texture_array_ex", "params": ["i64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
197
|
+
{ "name": "bloom_set_material_texture_array", "params": ["f64", "f64", "f64"], "returns": "void" },
|
|
198
|
+
{ "name": "bloom_set_material_shading_model", "params": ["f64", "f64"], "returns": "void" },
|
|
199
|
+
{ "name": "bloom_set_material_foliage", "params": ["f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
200
|
+
{ "name": "bloom_set_post_pass", "params": ["i64"], "returns": "f64" },
|
|
201
|
+
{ "name": "bloom_clear_post_pass", "params": [], "returns": "void" },
|
|
202
|
+
{ "name": "bloom_add_post_pass", "params": ["i64"], "returns": "f64" },
|
|
203
|
+
{ "name": "bloom_clear_all_post_passes", "params": [], "returns": "void" },
|
|
204
|
+
{ "name": "bloom_draw_material", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
205
|
+
{ "name": "bloom_load_model_animation", "params": ["i64"], "returns": "f64" },
|
|
206
|
+
{ "name": "bloom_update_model_animation", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
207
|
+
{ "name": "bloom_create_mesh", "params": ["i64", "f64", "i64", "f64"], "returns": "f64" },
|
|
208
|
+
{ "name": "bloom_set_joint_test", "params": ["f64", "f64"], "returns": "void" },
|
|
209
|
+
{ "name": "bloom_set_ambient_light", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
210
|
+
{ "name": "bloom_set_directional_light", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
211
|
+
{ "name": "bloom_set_procedural_sky", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
212
|
+
{ "name": "bloom_set_sun_direction", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
213
|
+
{ "name": "bloom_set_fog", "params": ["f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
214
|
+
{ "name": "bloom_set_chromatic_aberration","params": ["f64"], "returns": "void" },
|
|
215
|
+
{ "name": "bloom_set_vignette", "params": ["f64", "f64"], "returns": "void" },
|
|
216
|
+
{ "name": "bloom_set_film_grain", "params": ["f64"], "returns": "void" },
|
|
217
|
+
{ "name": "bloom_set_sun_shafts", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
218
|
+
{ "name": "bloom_set_auto_exposure", "params": ["f64"], "returns": "void" },
|
|
219
|
+
{ "name": "bloom_set_taa_enabled", "params": ["f64"], "returns": "void" },
|
|
220
|
+
{ "name": "bloom_set_render_scale", "params": ["f64"], "returns": "void" },
|
|
221
|
+
{ "name": "bloom_get_render_scale", "params": [], "returns": "f64" },
|
|
222
|
+
{ "name": "bloom_set_upscale_mode", "params": ["f64"], "returns": "void" },
|
|
223
|
+
{ "name": "bloom_set_cas_strength", "params": ["f64"], "returns": "void" },
|
|
224
|
+
{ "name": "bloom_get_physical_width", "params": [], "returns": "f64" },
|
|
225
|
+
{ "name": "bloom_get_physical_height", "params": [], "returns": "f64" },
|
|
226
|
+
{ "name": "bloom_set_auto_resolution", "params": ["f64", "f64"], "returns": "void" },
|
|
227
|
+
{ "name": "bloom_set_manual_exposure", "params": ["f64"], "returns": "void" },
|
|
228
|
+
{ "name": "bloom_set_env_intensity", "params": ["f64"], "returns": "void" },
|
|
229
|
+
{ "name": "bloom_set_ssgi_enabled", "params": ["f64"], "returns": "void" },
|
|
230
|
+
{ "name": "bloom_set_ssgi_intensity", "params": ["f64"], "returns": "void" },
|
|
231
|
+
{ "name": "bloom_set_ssgi_radius", "params": ["f64"], "returns": "void" },
|
|
232
|
+
{ "name": "bloom_set_dof", "params": ["f64", "f64", "f64"], "returns": "void" },
|
|
233
|
+
{ "name": "bloom_set_quality_preset", "params": ["f64"], "returns": "void" },
|
|
234
|
+
{ "name": "bloom_set_shadows_enabled", "params": ["f64"], "returns": "void" },
|
|
235
|
+
{ "name": "bloom_set_shadows_always_fresh", "params": ["f64"], "returns": "void" },
|
|
236
|
+
{ "name": "bloom_set_bloom_enabled", "params": ["f64"], "returns": "void" },
|
|
237
|
+
{ "name": "bloom_set_ssao_enabled", "params": ["f64"], "returns": "void" },
|
|
238
|
+
{ "name": "bloom_set_ssao_intensity", "params": ["f64"], "returns": "void" },
|
|
239
|
+
{ "name": "bloom_set_ssao_radius", "params": ["f64"], "returns": "void" },
|
|
240
|
+
{ "name": "bloom_set_wind", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
241
|
+
{ "name": "bloom_set_ssr_enabled", "params": ["f64"], "returns": "void" },
|
|
242
|
+
{ "name": "bloom_set_motion_blur_enabled", "params": ["f64"], "returns": "void" },
|
|
243
|
+
{ "name": "bloom_set_sss_enabled", "params": ["f64"], "returns": "void" },
|
|
244
|
+
{ "name": "bloom_set_profiler_enabled", "params": ["f64"], "returns": "void" },
|
|
245
|
+
{ "name": "bloom_get_profiler_frame_cpu_us","params": [], "returns": "f64" },
|
|
246
|
+
{ "name": "bloom_get_profiler_frame_gpu_us","params": [], "returns": "f64" },
|
|
247
|
+
{ "name": "bloom_print_profiler_summary", "params": [], "returns": "void" },
|
|
248
|
+
{ "name": "bloom_get_model_mesh_count", "params": ["f64"], "returns": "f64" },
|
|
249
|
+
{ "name": "bloom_get_model_material_count","params": ["f64"], "returns": "f64" },
|
|
250
|
+
{ "name": "bloom_inject_key_down", "params": ["f64"], "returns": "void" },
|
|
251
|
+
{ "name": "bloom_inject_key_up", "params": ["f64"], "returns": "void" },
|
|
252
|
+
{ "name": "bloom_inject_gamepad_axis", "params": ["f64", "f64"], "returns": "void" },
|
|
253
|
+
{ "name": "bloom_inject_gamepad_button_down","params": ["f64"], "returns": "void" },
|
|
254
|
+
{ "name": "bloom_inject_gamepad_button_up","params": ["f64"], "returns": "void" },
|
|
255
|
+
{ "name": "bloom_get_platform", "params": [], "returns": "f64" },
|
|
256
|
+
{ "name": "bloom_is_any_input_pressed", "params": [], "returns": "f64" },
|
|
257
|
+
{ "name": "bloom_get_crown_rotation", "params": [], "returns": "f64" },
|
|
258
|
+
|
|
259
|
+
{ "name": "bloom_load_music", "params": ["i64"], "returns": "f64" },
|
|
260
|
+
{ "name": "bloom_play_music", "params": ["f64"], "returns": "void" },
|
|
261
|
+
{ "name": "bloom_stop_music", "params": ["f64"], "returns": "void" },
|
|
262
|
+
{ "name": "bloom_update_music_stream", "params": ["f64"], "returns": "void" },
|
|
263
|
+
{ "name": "bloom_set_music_volume", "params": ["f64", "f64"], "returns": "void" },
|
|
264
|
+
{ "name": "bloom_is_music_playing", "params": ["f64"], "returns": "f64" },
|
|
265
|
+
|
|
266
|
+
{ "name": "bloom_is_gamepad_available", "params": [], "returns": "f64" },
|
|
267
|
+
{ "name": "bloom_get_gamepad_axis", "params": ["f64"], "returns": "f64" },
|
|
268
|
+
{ "name": "bloom_is_gamepad_button_pressed", "params": ["f64"], "returns": "f64" },
|
|
269
|
+
{ "name": "bloom_is_gamepad_button_down", "params": ["f64"], "returns": "f64" },
|
|
270
|
+
{ "name": "bloom_is_gamepad_button_released","params": ["f64"], "returns": "f64" },
|
|
271
|
+
{ "name": "bloom_get_gamepad_axis_count", "params": [], "returns": "f64" },
|
|
272
|
+
|
|
273
|
+
{ "name": "bloom_toggle_fullscreen", "params": [], "returns": "void" },
|
|
274
|
+
{ "name": "bloom_set_window_title", "params": ["i64"], "returns": "void" },
|
|
275
|
+
{ "name": "bloom_set_window_icon", "params": ["i64"], "returns": "void" },
|
|
276
|
+
{ "name": "bloom_disable_cursor", "params": [], "returns": "void" },
|
|
277
|
+
{ "name": "bloom_enable_cursor", "params": [], "returns": "void" },
|
|
278
|
+
{ "name": "bloom_get_mouse_delta_x", "params": [], "returns": "f64" },
|
|
279
|
+
{ "name": "bloom_get_mouse_delta_y", "params": [], "returns": "f64" },
|
|
280
|
+
{ "name": "bloom_get_mouse_wheel", "params": [], "returns": "f64" },
|
|
281
|
+
{ "name": "bloom_get_char_pressed", "params": [], "returns": "f64" },
|
|
282
|
+
{ "name": "bloom_get_model_bounds_min_x", "params": ["f64"], "returns": "f64" },
|
|
283
|
+
{ "name": "bloom_get_model_bounds_min_y", "params": ["f64"], "returns": "f64" },
|
|
284
|
+
{ "name": "bloom_get_model_bounds_min_z", "params": ["f64"], "returns": "f64" },
|
|
285
|
+
{ "name": "bloom_get_model_bounds_max_x", "params": ["f64"], "returns": "f64" },
|
|
286
|
+
{ "name": "bloom_get_model_bounds_max_y", "params": ["f64"], "returns": "f64" },
|
|
287
|
+
{ "name": "bloom_get_model_bounds_max_z", "params": ["f64"], "returns": "f64" },
|
|
288
|
+
{ "name": "bloom_write_file", "params": ["i64", "i64"], "returns": "f64" },
|
|
289
|
+
{ "name": "bloom_file_exists", "params": ["i64"], "returns": "f64" },
|
|
290
|
+
{ "name": "bloom_read_file", "params": ["i64"], "returns": "i64" },
|
|
291
|
+
{ "name": "bloom_get_touch_x", "params": ["f64"], "returns": "f64" },
|
|
292
|
+
{ "name": "bloom_get_touch_y", "params": ["f64"], "returns": "f64" },
|
|
293
|
+
{ "name": "bloom_get_touch_count", "params": [], "returns": "f64" },
|
|
294
|
+
{ "name": "bloom_get_time", "params": [], "returns": "f64" },
|
|
295
|
+
|
|
296
|
+
{ "name": "bloom_register_frame_callback", "params": ["f64", "i64"], "returns": "f64" },
|
|
297
|
+
{ "name": "bloom_unregister_frame_callback", "params": ["f64"], "returns": "void" },
|
|
298
|
+
{ "name": "bloom_run_game", "params": ["f64"], "returns": "void" },
|
|
299
|
+
{ "name": "bloom_add_directional_light", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
300
|
+
{ "name": "bloom_add_point_light", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
301
|
+
|
|
302
|
+
{ "name": "bloom_scene_create_node", "params": [], "returns": "f64" },
|
|
303
|
+
{ "name": "bloom_scene_destroy_node", "params": ["f64"], "returns": "void" },
|
|
304
|
+
{ "name": "bloom_scene_set_visible", "params": ["f64", "f64"], "returns": "void" },
|
|
305
|
+
{ "name": "bloom_scene_set_cast_shadow", "params": ["f64", "f64"], "returns": "void" },
|
|
306
|
+
{ "name": "bloom_scene_set_receive_shadow", "params": ["f64", "f64"], "returns": "void" },
|
|
307
|
+
{ "name": "bloom_scene_set_parent", "params": ["f64", "f64"], "returns": "void" },
|
|
308
|
+
{ "name": "bloom_scene_set_transform", "params": ["f64", "i64"], "returns": "void" },
|
|
309
|
+
{ "name": "bloom_scene_update_geometry", "params": ["f64", "i64", "f64", "i64", "f64"], "returns": "void" },
|
|
310
|
+
{ "name": "bloom_scene_set_material_color", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
311
|
+
{ "name": "bloom_scene_set_material_pbr", "params": ["f64", "f64", "f64"], "returns": "void" },
|
|
312
|
+
{ "name": "bloom_scene_set_material_texture", "params": ["f64", "f64"], "returns": "void" },
|
|
313
|
+
{ "name": "bloom_scene_node_count", "params": [], "returns": "f64" },
|
|
314
|
+
{ "name": "bloom_scene_node_vertex_count", "params": ["f64"], "returns": "f64" },
|
|
315
|
+
{ "name": "bloom_scene_node_index_count", "params": ["f64"], "returns": "f64" },
|
|
316
|
+
{ "name": "bloom_set_cursor_shape", "params": ["f64"], "returns": "void" },
|
|
317
|
+
{ "name": "bloom_set_clipboard_text", "params": ["i64"], "returns": "void" },
|
|
318
|
+
{ "name": "bloom_get_clipboard_text", "params": [], "returns": "i64" },
|
|
319
|
+
{ "name": "bloom_open_file_dialog", "params": ["i64", "i64"], "returns": "i64" },
|
|
320
|
+
{ "name": "bloom_save_file_dialog", "params": ["i64", "i64"], "returns": "i64" },
|
|
321
|
+
{ "name": "bloom_scene_pick_all", "params": ["f64", "f64", "f64"], "returns": "f64" },
|
|
322
|
+
{ "name": "bloom_pick_all_handle", "params": ["f64"], "returns": "f64" },
|
|
323
|
+
{ "name": "bloom_pick_all_distance", "params": ["f64"], "returns": "f64" },
|
|
324
|
+
{ "name": "bloom_scene_set_material_water", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
325
|
+
{ "name": "bloom_gen_mesh_spline_ribbon", "params": ["i64", "f64", "i64", "f64"], "returns": "f64" },
|
|
326
|
+
{ "name": "bloom_load_render_texture", "params": ["f64", "f64"], "returns": "f64" },
|
|
327
|
+
{ "name": "bloom_unload_render_texture", "params": ["f64"], "returns": "void" },
|
|
328
|
+
{ "name": "bloom_begin_texture_mode", "params": ["f64"], "returns": "void" },
|
|
329
|
+
{ "name": "bloom_end_texture_mode", "params": [], "returns": "void" },
|
|
330
|
+
{ "name": "bloom_get_render_texture_texture", "params": ["f64"], "returns": "f64" },
|
|
331
|
+
{ "name": "bloom_scene_get_transform", "params": ["f64", "f64"], "returns": "f64" },
|
|
332
|
+
{ "name": "bloom_scene_get_bounds_min_x", "params": ["f64"], "returns": "f64" },
|
|
333
|
+
{ "name": "bloom_scene_get_bounds_min_y", "params": ["f64"], "returns": "f64" },
|
|
334
|
+
{ "name": "bloom_scene_get_bounds_min_z", "params": ["f64"], "returns": "f64" },
|
|
335
|
+
{ "name": "bloom_scene_get_bounds_max_x", "params": ["f64"], "returns": "f64" },
|
|
336
|
+
{ "name": "bloom_scene_get_bounds_max_y", "params": ["f64"], "returns": "f64" },
|
|
337
|
+
{ "name": "bloom_scene_get_bounds_max_z", "params": ["f64"], "returns": "f64" },
|
|
338
|
+
{ "name": "bloom_scene_set_user_data", "params": ["f64", "f64"], "returns": "void" },
|
|
339
|
+
{ "name": "bloom_scene_get_user_data", "params": ["f64"], "returns": "f64" },
|
|
340
|
+
{ "name": "bloom_scene_extrude_polygon", "params": ["f64", "i64", "f64", "f64"], "returns": "void" },
|
|
341
|
+
{ "name": "bloom_scene_subtract_box", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
342
|
+
{ "name": "bloom_enable_shadows", "params": [], "returns": "void" },
|
|
343
|
+
{ "name": "bloom_disable_shadows", "params": [], "returns": "void" },
|
|
344
|
+
{ "name": "bloom_dump_shadow_map", "params": ["i64"], "returns": "void" },
|
|
345
|
+
{ "name": "bloom_scene_attach_model", "params": ["f64", "f64", "f64"], "returns": "void" },
|
|
346
|
+
{ "name": "bloom_enable_postfx", "params": [], "returns": "void" },
|
|
347
|
+
{ "name": "bloom_disable_postfx", "params": [], "returns": "void" },
|
|
348
|
+
{ "name": "bloom_postfx_set_selected", "params": ["f64"], "returns": "void" },
|
|
349
|
+
{ "name": "bloom_postfx_set_hovered", "params": ["f64"], "returns": "void" },
|
|
350
|
+
{ "name": "bloom_postfx_set_outline_color", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
351
|
+
{ "name": "bloom_postfx_set_outline_thickness","params": ["f64"], "returns": "void" },
|
|
352
|
+
{ "name": "bloom_project_to_screen", "params": ["f64", "f64", "f64"], "returns": "f64" },
|
|
353
|
+
{ "name": "bloom_project_screen_y", "params": [], "returns": "f64" },
|
|
354
|
+
{ "name": "bloom_scene_pick", "params": ["f64", "f64"], "returns": "f64" },
|
|
355
|
+
{ "name": "bloom_pick_hit_handle", "params": [], "returns": "f64" },
|
|
356
|
+
{ "name": "bloom_pick_hit_distance", "params": [], "returns": "f64" },
|
|
357
|
+
{ "name": "bloom_pick_hit_x", "params": [], "returns": "f64" },
|
|
358
|
+
{ "name": "bloom_pick_hit_y", "params": [], "returns": "f64" },
|
|
359
|
+
{ "name": "bloom_pick_hit_z", "params": [], "returns": "f64" },
|
|
360
|
+
{ "name": "bloom_pick_hit_normal_x", "params": [], "returns": "f64" },
|
|
361
|
+
{ "name": "bloom_pick_hit_normal_y", "params": [], "returns": "f64" },
|
|
362
|
+
{ "name": "bloom_pick_hit_normal_z", "params": [], "returns": "f64" },
|
|
363
|
+
|
|
364
|
+
{ "name": "bloom_stage_texture", "params": ["i64"], "returns": "f64" },
|
|
365
|
+
{ "name": "bloom_stage_model", "params": ["i64"], "returns": "f64" },
|
|
366
|
+
{ "name": "bloom_stage_sound", "params": ["i64"], "returns": "f64" },
|
|
367
|
+
{ "name": "bloom_commit_texture", "params": ["f64"], "returns": "f64" },
|
|
368
|
+
{ "name": "bloom_commit_model", "params": ["f64"], "returns": "f64" },
|
|
369
|
+
{ "name": "bloom_commit_sound", "params": ["f64"], "returns": "f64" },
|
|
370
|
+
{ "name": "bloom_commit_music", "params": ["f64"], "returns": "f64" },
|
|
371
|
+
|
|
372
|
+
{ "name": "bloom_physics_create_world", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
373
|
+
{ "name": "bloom_physics_destroy_world", "params": ["f64"], "returns": "void" },
|
|
374
|
+
{ "name": "bloom_physics_set_gravity", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
375
|
+
{ "name": "bloom_physics_get_gravity", "params": ["f64", "f64"], "returns": "f64" },
|
|
376
|
+
{ "name": "bloom_physics_optimize_broadphase", "params": ["f64"], "returns": "void" },
|
|
377
|
+
{ "name": "bloom_physics_step", "params": ["f64", "f64", "f64"], "returns": "void" },
|
|
378
|
+
{ "name": "bloom_physics_set_layer_collides", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
379
|
+
{ "name": "bloom_physics_get_layer_collides", "params": ["f64", "f64", "f64"], "returns": "f64" },
|
|
380
|
+
{ "name": "bloom_physics_body_count", "params": ["f64"], "returns": "f64" },
|
|
381
|
+
{ "name": "bloom_physics_active_body_count", "params": ["f64"], "returns": "f64" },
|
|
382
|
+
|
|
383
|
+
{ "name": "bloom_physics_shape_box", "params": ["f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
384
|
+
{ "name": "bloom_physics_shape_sphere", "params": ["f64"], "returns": "f64" },
|
|
385
|
+
{ "name": "bloom_physics_shape_capsule", "params": ["f64", "f64"], "returns": "f64" },
|
|
386
|
+
{ "name": "bloom_physics_shape_cylinder", "params": ["f64", "f64", "f64"], "returns": "f64" },
|
|
387
|
+
{ "name": "bloom_physics_shape_scaled", "params": ["f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
388
|
+
{ "name": "bloom_physics_shape_offset_com", "params": ["f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
389
|
+
{ "name": "bloom_physics_shape_release", "params": ["f64"], "returns": "void" },
|
|
390
|
+
{ "name": "bloom_physics_scratch_reset", "params": [], "returns": "void" },
|
|
391
|
+
{ "name": "bloom_physics_scratch_push_f32", "params": ["f64"], "returns": "void" },
|
|
392
|
+
{ "name": "bloom_physics_scratch_push_u32", "params": ["f64"], "returns": "void" },
|
|
393
|
+
{ "name": "bloom_physics_shape_convex_hull", "params": ["f64", "f64"], "returns": "f64" },
|
|
394
|
+
{ "name": "bloom_physics_shape_mesh", "params": ["f64", "f64"], "returns": "f64" },
|
|
395
|
+
{ "name": "bloom_physics_shape_heightfield", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
396
|
+
{ "name": "bloom_physics_compound_begin", "params": [], "returns": "void" },
|
|
397
|
+
{ "name": "bloom_physics_compound_add_child", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
398
|
+
{ "name": "bloom_physics_compound_end", "params": [], "returns": "f64" },
|
|
399
|
+
{ "name": "bloom_physics_shape_bounds", "params": ["f64", "f64"], "returns": "f64" },
|
|
400
|
+
{ "name": "bloom_physics_shape_volume", "params": ["f64"], "returns": "f64" },
|
|
401
|
+
|
|
402
|
+
{ "name": "bloom_physics_body_create", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
403
|
+
{ "name": "bloom_physics_body_destroy", "params": ["f64"], "returns": "void" },
|
|
404
|
+
{ "name": "bloom_physics_body_activate", "params": ["f64"], "returns": "void" },
|
|
405
|
+
{ "name": "bloom_physics_body_deactivate", "params": ["f64"], "returns": "void" },
|
|
406
|
+
{ "name": "bloom_physics_body_is_active", "params": ["f64"], "returns": "f64" },
|
|
407
|
+
{ "name": "bloom_physics_body_is_valid", "params": ["f64"], "returns": "f64" },
|
|
408
|
+
|
|
409
|
+
{ "name": "bloom_physics_body_get_position", "params": ["f64", "f64"], "returns": "f64" },
|
|
410
|
+
{ "name": "bloom_physics_body_get_rotation", "params": ["f64", "f64"], "returns": "f64" },
|
|
411
|
+
{ "name": "bloom_physics_body_set_position", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
412
|
+
{ "name": "bloom_physics_body_set_rotation", "params": ["f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
413
|
+
{ "name": "bloom_physics_body_set_transform", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
414
|
+
{ "name": "bloom_physics_body_move_kinematic", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
415
|
+
|
|
416
|
+
{ "name": "bloom_physics_body_get_linear_velocity", "params": ["f64", "f64"], "returns": "f64" },
|
|
417
|
+
{ "name": "bloom_physics_body_get_angular_velocity","params": ["f64", "f64"], "returns": "f64" },
|
|
418
|
+
{ "name": "bloom_physics_body_get_point_velocity", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
419
|
+
{ "name": "bloom_physics_body_set_linear_velocity", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
420
|
+
{ "name": "bloom_physics_body_set_angular_velocity","params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
421
|
+
|
|
422
|
+
{ "name": "bloom_physics_body_add_force", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
423
|
+
{ "name": "bloom_physics_body_add_impulse", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
424
|
+
{ "name": "bloom_physics_body_add_torque", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
425
|
+
{ "name": "bloom_physics_body_add_angular_impulse","params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
426
|
+
{ "name": "bloom_physics_body_add_force_at", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
427
|
+
{ "name": "bloom_physics_body_add_impulse_at", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
428
|
+
|
|
429
|
+
{ "name": "bloom_physics_body_set_friction", "params": ["f64", "f64"], "returns": "void" },
|
|
430
|
+
{ "name": "bloom_physics_body_set_restitution", "params": ["f64", "f64"], "returns": "void" },
|
|
431
|
+
{ "name": "bloom_physics_body_set_linear_damping","params": ["f64", "f64"], "returns": "void" },
|
|
432
|
+
{ "name": "bloom_physics_body_set_angular_damping","params": ["f64", "f64"], "returns": "void" },
|
|
433
|
+
{ "name": "bloom_physics_body_set_gravity_factor","params": ["f64", "f64"], "returns": "void" },
|
|
434
|
+
{ "name": "bloom_physics_body_set_ccd", "params": ["f64", "f64"], "returns": "void" },
|
|
435
|
+
{ "name": "bloom_physics_body_set_motion_type", "params": ["f64", "f64", "f64"], "returns": "void" },
|
|
436
|
+
{ "name": "bloom_physics_body_set_object_layer", "params": ["f64", "f64"], "returns": "void" },
|
|
437
|
+
{ "name": "bloom_physics_body_set_is_sensor", "params": ["f64", "f64"], "returns": "void" },
|
|
438
|
+
{ "name": "bloom_physics_body_set_allow_sleeping","params": ["f64", "f64"], "returns": "void" },
|
|
439
|
+
{ "name": "bloom_physics_body_set_shape", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
440
|
+
{ "name": "bloom_physics_body_lock_rotation_axes", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
441
|
+
{ "name": "bloom_physics_body_lock_translation_axes","params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
442
|
+
|
|
443
|
+
{ "name": "bloom_physics_body_get_mass", "params": ["f64"], "returns": "f64" },
|
|
444
|
+
{ "name": "bloom_physics_body_get_friction", "params": ["f64"], "returns": "f64" },
|
|
445
|
+
{ "name": "bloom_physics_body_get_restitution", "params": ["f64"], "returns": "f64" },
|
|
446
|
+
{ "name": "bloom_physics_body_get_object_layer", "params": ["f64"], "returns": "f64" },
|
|
447
|
+
{ "name": "bloom_physics_body_set_user_data", "params": ["f64", "f64", "f64"], "returns": "void" },
|
|
448
|
+
{ "name": "bloom_physics_body_get_user_data", "params": ["f64", "f64"], "returns": "f64" },
|
|
449
|
+
|
|
450
|
+
{ "name": "bloom_physics_raycast", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
451
|
+
{ "name": "bloom_physics_raycast_all", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
452
|
+
{ "name": "bloom_physics_ray_hit_count", "params": [], "returns": "f64" },
|
|
453
|
+
{ "name": "bloom_physics_ray_hit_body", "params": ["f64"], "returns": "f64" },
|
|
454
|
+
{ "name": "bloom_physics_ray_hit_axis", "params": ["f64", "f64"], "returns": "f64" },
|
|
455
|
+
{ "name": "bloom_physics_ray_hit_fraction", "params": ["f64"], "returns": "f64" },
|
|
456
|
+
{ "name": "bloom_physics_ray_hit_sub_shape", "params": ["f64"], "returns": "f64" },
|
|
457
|
+
|
|
458
|
+
{ "name": "bloom_physics_overlap_sphere", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
459
|
+
{ "name": "bloom_physics_overlap_point", "params": ["f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
460
|
+
{ "name": "bloom_physics_overlap_box", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
461
|
+
{ "name": "bloom_physics_overlap_body", "params": ["f64"], "returns": "f64" },
|
|
462
|
+
|
|
463
|
+
{ "name": "bloom_physics_constraint_fixed", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
464
|
+
{ "name": "bloom_physics_constraint_point", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
465
|
+
{ "name": "bloom_physics_constraint_hinge", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
466
|
+
{ "name": "bloom_physics_constraint_slider", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
467
|
+
{ "name": "bloom_physics_constraint_distance", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
468
|
+
{ "name": "bloom_physics_constraint_destroy", "params": ["f64"], "returns": "void" },
|
|
469
|
+
{ "name": "bloom_physics_constraint_set_enabled", "params": ["f64", "f64"], "returns": "void" },
|
|
470
|
+
|
|
471
|
+
{ "name": "bloom_physics_contact_count", "params": [], "returns": "f64" },
|
|
472
|
+
{ "name": "bloom_physics_contact_field", "params": ["f64", "f64"], "returns": "f64" },
|
|
473
|
+
{ "name": "bloom_physics_clear_contacts", "params": ["f64"], "returns": "void" },
|
|
474
|
+
|
|
475
|
+
{ "name": "bloom_physics_character_create", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
476
|
+
{ "name": "bloom_physics_character_destroy", "params": ["f64"], "returns": "void" },
|
|
477
|
+
{ "name": "bloom_physics_character_update", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
478
|
+
{ "name": "bloom_physics_character_get_position", "params": ["f64", "f64"], "returns": "f64" },
|
|
479
|
+
{ "name": "bloom_physics_character_get_rotation", "params": ["f64", "f64"], "returns": "f64" },
|
|
480
|
+
{ "name": "bloom_physics_character_set_position", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
481
|
+
{ "name": "bloom_physics_character_set_rotation", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
482
|
+
{ "name": "bloom_physics_character_get_linear_velocity", "params": ["f64", "f64"], "returns": "f64" },
|
|
483
|
+
{ "name": "bloom_physics_character_set_linear_velocity", "params": ["f64", "f64", "f64", "f64"], "returns": "void" },
|
|
484
|
+
{ "name": "bloom_physics_character_get_ground_state", "params": ["f64"], "returns": "f64" },
|
|
485
|
+
{ "name": "bloom_physics_character_get_ground_normal", "params": ["f64", "f64"], "returns": "f64" },
|
|
486
|
+
{ "name": "bloom_physics_character_get_ground_position", "params": ["f64", "f64"], "returns": "f64" },
|
|
487
|
+
{ "name": "bloom_physics_character_get_ground_body", "params": ["f64"], "returns": "f64" },
|
|
488
|
+
{ "name": "bloom_physics_character_set_shape", "params": ["f64", "f64"], "returns": "void" },
|
|
489
|
+
|
|
490
|
+
{ "name": "bloom_physics_soft_body_create", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
491
|
+
{ "name": "bloom_physics_soft_body_vertex_count", "params": ["f64"], "returns": "f64" },
|
|
492
|
+
{ "name": "bloom_physics_soft_body_get_vertex", "params": ["f64", "f64", "f64"], "returns": "f64" },
|
|
493
|
+
{ "name": "bloom_physics_soft_body_set_vertex", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
494
|
+
{ "name": "bloom_physics_soft_body_set_vertex_inv_mass", "params": ["f64", "f64", "f64"], "returns": "void" },
|
|
495
|
+
|
|
496
|
+
{ "name": "bloom_physics_vehicle_create", "params": ["f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64", "f64"], "returns": "f64" },
|
|
497
|
+
{ "name": "bloom_physics_vehicle_destroy", "params": ["f64"], "returns": "void" },
|
|
498
|
+
{ "name": "bloom_physics_vehicle_get_chassis", "params": ["f64"], "returns": "f64" },
|
|
499
|
+
{ "name": "bloom_physics_vehicle_set_input", "params": ["f64", "f64", "f64", "f64", "f64"], "returns": "void" },
|
|
500
|
+
{ "name": "bloom_physics_vehicle_get_wheel_transform", "params": ["f64", "f64", "f64"], "returns": "f64" },
|
|
501
|
+
{ "name": "bloom_physics_vehicle_get_engine_rpm", "params": ["f64"], "returns": "f64" },
|
|
502
|
+
{ "name": "bloom_physics_vehicle_get_wheel_angular_velocity", "params": ["f64", "f64"], "returns": "f64" }
|
|
503
|
+
],
|
|
504
|
+
"targets": {
|
|
505
|
+
"macos": {
|
|
506
|
+
"crate": "native/macos/",
|
|
507
|
+
"lib": "libbloom_macos.a",
|
|
508
|
+
"frameworks": ["Metal", "QuartzCore", "AppKit", "CoreGraphics", "CoreText",
|
|
509
|
+
"CoreFoundation", "CoreAudio", "AudioToolbox", "AVFoundation",
|
|
510
|
+
"GameController"],
|
|
511
|
+
"libs": ["c++"]
|
|
512
|
+
},
|
|
513
|
+
"ios": {
|
|
514
|
+
"crate": "native/ios/",
|
|
515
|
+
"lib": "libbloom_ios.a",
|
|
516
|
+
"frameworks": ["Metal", "QuartzCore", "UIKit", "CoreGraphics", "CoreText",
|
|
517
|
+
"CoreFoundation", "CoreAudio", "AudioToolbox", "AVFoundation",
|
|
518
|
+
"GameController"]
|
|
519
|
+
},
|
|
520
|
+
"tvos": {
|
|
521
|
+
"crate": "native/tvos/",
|
|
522
|
+
"lib": "libbloom_tvos.a",
|
|
523
|
+
"frameworks": ["Metal", "QuartzCore", "UIKit", "CoreGraphics", "CoreText",
|
|
524
|
+
"CoreFoundation", "CoreAudio", "AudioToolbox", "AVFoundation",
|
|
525
|
+
"GameController"]
|
|
526
|
+
},
|
|
527
|
+
"watchos": {
|
|
528
|
+
"crate": "native/watchos/",
|
|
529
|
+
"lib": "libbloom_watchos.a",
|
|
530
|
+
"frameworks": ["WatchKit", "Foundation", "CoreGraphics", "QuartzCore", "SwiftUI", "SceneKit", "AVFoundation"],
|
|
531
|
+
"swift_sources": ["native/watchos/src/BloomWatchApp.swift", "native/watchos/src/BloomWatchAudio.swift"],
|
|
532
|
+
"metal_sources": ["native/watchos/shaders/bloom_postfx.metal"]
|
|
533
|
+
},
|
|
534
|
+
"windows": {
|
|
535
|
+
"crate": "native/windows/",
|
|
536
|
+
"lib": "bloom_windows.lib",
|
|
537
|
+
"libs": ["user32", "gdi32", "ole32", "shell32", "d3d12", "dxgi", "dxguid", "xinput", "opengl32", "d3dcompiler"]
|
|
538
|
+
},
|
|
539
|
+
"linux": {
|
|
540
|
+
"crate": "native/linux/",
|
|
541
|
+
"lib": "libbloom_linux.a",
|
|
542
|
+
"pkgConfig": ["x11", "xi", "alsa"]
|
|
543
|
+
},
|
|
544
|
+
"android": {
|
|
545
|
+
"crate": "native/android/",
|
|
546
|
+
"lib": "libbloom_android.a",
|
|
547
|
+
"libs": ["android", "log", "c++_static", "c++abi", "OpenSLES"]
|
|
548
|
+
},
|
|
549
|
+
"web": {
|
|
550
|
+
"crate": "native/web/",
|
|
551
|
+
"target": "wasm32-unknown-unknown",
|
|
552
|
+
"buildTool": "wasm-pack",
|
|
553
|
+
"output": "native/web/pkg/"
|
|
554
|
+
}
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
}
|