├── .github └── workflows │ ├── deploy.yml │ └── tests.yml ├── .gitignore ├── .gitmodules ├── CSharpScriptsTable.json ├── GodotFixedVolatilePhysics.csproj ├── GodotFixedVolatilePhysics.sln ├── LICENSE ├── README.md ├── ReadmeAssets ├── FullPhysicsTest.gif ├── KinematicBody.gif └── PhysicsTest.gif ├── addons ├── GodotFixedVolatilePhysics │ ├── Assets │ │ ├── SimpleForce.svg │ │ ├── SimpleForce.svg.import │ │ ├── VoltArea.svg │ │ ├── VoltArea.svg.import │ │ ├── VoltKinematicBody.svg │ │ ├── VoltKinematicBody.svg.import │ │ ├── VoltNode2D.svg │ │ ├── VoltNode2D.svg.import │ │ ├── VoltPolygon.svg │ │ ├── VoltPolygon.svg.import │ │ ├── VoltRect.svg │ │ ├── VoltRect.svg.import │ │ ├── VoltRigidBody.svg │ │ ├── VoltRigidBody.svg.import │ │ ├── VoltStaticBody.svg │ │ ├── VoltStaticBody.svg.import │ │ ├── VoltWorld.svg │ │ └── VoltWorld.svg.import │ ├── Core │ │ ├── Palette.cs │ │ ├── SimpleForce.cs │ │ ├── Test.cs │ │ ├── TypeSerializers │ │ │ ├── ArraySerializer.cs │ │ │ ├── TypeSerializer.cs │ │ │ └── TypeSerializers.cs │ │ ├── Types │ │ │ ├── VoltMatrix.cs │ │ │ ├── VoltRect2.cs │ │ │ └── VoltTransform2D.cs │ │ ├── Utils.cs │ │ ├── VolatileBodies │ │ │ ├── VolatileArea.cs │ │ │ ├── VolatileBody.cs │ │ │ ├── VolatileKinematicBody.cs │ │ │ ├── VolatileRigidBody.cs │ │ │ └── VolatileStaticBody.cs │ │ ├── VolatileExtensions.cs │ │ ├── VolatileShapes │ │ │ ├── VolatileCircle.cs │ │ │ ├── VolatilePolygon.cs │ │ │ ├── VolatileRect.cs │ │ │ └── VolatileShape.cs │ │ ├── VolatileWorld.cs │ │ ├── VoltNode2D.cs │ │ └── VoltType.cs │ ├── Libraries │ │ ├── FixedMath.Net │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ └── src │ │ │ │ ├── Fix64.cs │ │ │ │ ├── Fix64SinLut.cs │ │ │ │ └── Fix64TanLut.cs │ │ └── VolatilePhysics │ │ │ ├── Extensions │ │ │ └── VoltExplosion.cs │ │ │ ├── Internals │ │ │ ├── Axis.cs │ │ │ ├── Broadphase │ │ │ │ ├── IBroadphase.cs │ │ │ │ ├── NaiveBroadphase.cs │ │ │ │ └── TreeBroadphase.cs │ │ │ ├── CheapList.cs │ │ │ ├── Collision │ │ │ │ ├── Collision.cs │ │ │ │ ├── Contact.cs │ │ │ │ └── Manifold.cs │ │ │ ├── History │ │ │ │ ├── HistoryBuffer.cs │ │ │ │ └── HistoryRecord.cs │ │ │ └── IIndexedValue.cs │ │ │ ├── RayCast │ │ │ ├── VoltRayCast.cs │ │ │ └── VoltRayResult.cs │ │ │ ├── Shapes │ │ │ ├── VoltCircle.cs │ │ │ └── VoltPolygon.cs │ │ │ ├── Structs │ │ │ └── VoltShapeCollision.cs │ │ │ ├── Util │ │ │ ├── Debug │ │ │ │ └── VoltDebug.cs │ │ │ ├── Pooling │ │ │ │ ├── IVoltPoolable.cs │ │ │ │ └── VoltPool.cs │ │ │ └── VoltUtil.cs │ │ │ ├── VoltAABB.cs │ │ │ ├── VoltBody.cs │ │ │ ├── VoltBuffer.cs │ │ │ ├── VoltCollisionFilters.cs │ │ │ ├── VoltConfig.cs │ │ │ ├── VoltMath.cs │ │ │ ├── VoltShape.cs │ │ │ ├── VoltVector2.cs │ │ │ └── VoltWorld.cs │ ├── Plugin.cs │ ├── Plugins │ │ ├── VolatileNodesPlugin │ │ │ └── VolatileNodesPlugin.cs │ │ ├── VolatileShapePlugins │ │ │ ├── PointsEditorPlugin.cs │ │ │ ├── VolatileCirclePlugin.cs │ │ │ ├── VolatilePolygonPlugin.cs │ │ │ ├── VolatileRectPlugin.cs │ │ │ └── VolatileShapeEditorPlugin.cs │ │ └── VoltTypesPlugin │ │ │ ├── EditorProperties │ │ │ ├── CompoundSerializedEditorProperty.cs │ │ │ ├── EditorPropertyExtens.cs │ │ │ ├── ExtendedEditorProperty.cs │ │ │ ├── ExtendedEditorPropertyParser.cs │ │ │ ├── Fix64EditorProperty.cs │ │ │ ├── SerializedEditorProperty.cs │ │ │ ├── SerializedEditorPropertyParser.cs │ │ │ ├── VoltArrayEditorProperty.cs │ │ │ ├── VoltRect2EditorProperty.cs │ │ │ ├── VoltTransform2DEditorProperty.cs │ │ │ └── VoltVector2EditorProperty.cs │ │ │ ├── VoltPropertyHint.cs │ │ │ ├── VoltTypesInspectorPlugin.cs │ │ │ └── VoltTypesPlugin.cs │ └── plugin.cfg ├── GodotVisualStudioStub │ └── StubProject.csproj ├── VirtualJoystick │ ├── VirtualJoystick.cs │ ├── textures │ │ ├── joystick_base_outline.png │ │ ├── joystick_base_outline.png.import │ │ ├── joystick_tip.png │ │ ├── joystick_tip.png.import │ │ ├── joystick_tip_arrows.png │ │ └── joystick_tip_arrows.png.import │ ├── virtual_joystick.gd │ └── virtual_joystick.tscn └── WAT │ ├── LICENSE │ ├── assertions │ ├── .idea │ │ └── .idea.assertions.dir │ │ │ └── .idea │ │ │ ├── encodings.xml │ │ │ ├── indexLayout.xml │ │ │ ├── projectSettingsUpdater.xml │ │ │ ├── vcs.xml │ │ │ └── workspace.xml │ ├── assertion.gd │ ├── assertions.gd │ ├── boolean.gd │ ├── collections.gd │ ├── double.gd │ ├── equality.gd │ ├── file.gd │ ├── folder.gd │ ├── is.gd │ ├── is_not.gd │ ├── null.gd │ ├── object.gd │ ├── property.gd │ ├── range.gd │ ├── signal.gd │ ├── string.gd │ └── utility.gd │ ├── assets │ ├── debug_failed.png │ ├── debug_failed.png.import │ ├── docs.svg │ ├── docs.svg.import │ ├── failed.png │ ├── failed.png.import │ ├── folder.png │ ├── folder.png.import │ ├── function.png │ ├── function.png.import │ ├── issue.svg │ ├── issue.svg.import │ ├── kofi.png │ ├── kofi.png.import │ ├── label.png │ ├── label.png.import │ ├── passed.png │ ├── passed.png.import │ ├── play.png │ ├── play.png.import │ ├── play_debug.png │ ├── play_debug.png.import │ ├── play_failed.png │ ├── play_failed.png.import │ ├── request_docs.svg │ ├── request_docs.svg.import │ ├── script.png │ ├── script.png.import │ ├── timer.png │ └── timer.png.import │ ├── cli.tscn │ ├── double │ ├── factory.gd │ ├── method.gd │ ├── methods.gd │ ├── registry.gd │ ├── scene_director.gd │ ├── script_director.gd │ └── script_writer.gd │ ├── filesystem │ ├── directory.gd │ ├── failed.gd │ ├── filesystem.gd │ ├── method.gd │ ├── script.gd │ ├── tagged.gd │ ├── tracker.gd │ ├── validator.gd │ └── yield_calculator.gd │ ├── gui.tscn │ ├── io │ ├── junit_xml.gd │ └── metadata.gd │ ├── mono │ ├── Attributes.cs │ ├── BuildScene.cs │ ├── BuildScene.tscn │ ├── GDScriptWrapper.cs │ ├── Test.cs │ └── assertions │ │ ├── Assertion.cs │ │ ├── Assertions.cs │ │ ├── Boolean.cs │ │ ├── Equality.cs │ │ ├── File.cs │ │ ├── Is.cs │ │ ├── Null.cs │ │ ├── ObjectX.cs │ │ ├── Property.cs │ │ ├── Range.cs │ │ ├── Signal.cs │ │ ├── StringX.cs │ │ └── Utility.cs │ ├── namespace.gd │ ├── network │ ├── test_client.gd │ ├── test_network.gd │ └── test_server.gd │ ├── plugin.cfg │ ├── plugin.gd │ ├── runner │ ├── TestRunner.gd │ ├── TestRunner.tscn │ ├── splitter.gd │ └── test_controller.gd │ ├── settings.gd │ ├── test │ ├── any.gd │ ├── case.gd │ ├── parameters.gd │ ├── recorder.gd │ ├── test.gd │ ├── watcher.gd │ └── yielder.gd │ └── ui │ ├── cli.gd │ ├── docker.gd │ ├── gui.gd │ ├── links.gd │ ├── results │ ├── assertion.gd │ ├── counter.gd │ ├── method.gd │ ├── script.gd │ ├── tab.gd │ ├── tab_container.gd │ └── tree.gd │ ├── scaling │ ├── dynamic_size_spinbox.gd │ ├── icons.gd │ ├── plugin_assets_registry.gd │ └── scene_tree_adjuster.gd │ ├── summary.gd │ └── test_menu.gd ├── bootsplash.png ├── bootsplash.png.import ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot └── tests ├── Manual ├── Physics │ ├── CompleteTest.tscn │ ├── FPSCounter.cs │ ├── GDKinematicMovement.cs │ ├── GDPhysics2DTesting.tscn │ ├── PhysicsHighEndTest.tscn │ ├── PhysicsLowEndTest.tscn │ ├── PolygonTests.tscn │ └── Prefabs │ │ ├── DispersedDynamicGroupPrefab.tscn │ │ ├── DynamicGroupPrefab.tscn │ │ ├── VolatileAreaTestPrefab.tscn │ │ └── VolatileKinematicMovementPrefab.tscn └── VoltNode2D │ ├── FixedMovement.cs │ ├── VolatileAreaTest.cs │ ├── VolatileKinematicBodyMovement.cs │ └── VoltNode2DTest.tscn ├── VoltMatrixTests.cs ├── VoltNode2DTests.cs └── VoltTransform2DTests.cs /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/.gitmodules -------------------------------------------------------------------------------- /CSharpScriptsTable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/CSharpScriptsTable.json -------------------------------------------------------------------------------- /GodotFixedVolatilePhysics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/GodotFixedVolatilePhysics.csproj -------------------------------------------------------------------------------- /GodotFixedVolatilePhysics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/GodotFixedVolatilePhysics.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/README.md -------------------------------------------------------------------------------- /ReadmeAssets/FullPhysicsTest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/ReadmeAssets/FullPhysicsTest.gif -------------------------------------------------------------------------------- /ReadmeAssets/KinematicBody.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/ReadmeAssets/KinematicBody.gif -------------------------------------------------------------------------------- /ReadmeAssets/PhysicsTest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/ReadmeAssets/PhysicsTest.gif -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/SimpleForce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/SimpleForce.svg -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/SimpleForce.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/SimpleForce.svg.import -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltArea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltArea.svg -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltArea.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltArea.svg.import -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltKinematicBody.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltKinematicBody.svg -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltKinematicBody.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltKinematicBody.svg.import -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltNode2D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltNode2D.svg -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltNode2D.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltNode2D.svg.import -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltPolygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltPolygon.svg -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltPolygon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltPolygon.svg.import -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltRect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltRect.svg -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltRect.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltRect.svg.import -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltRigidBody.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltRigidBody.svg -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltRigidBody.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltRigidBody.svg.import -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltStaticBody.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltStaticBody.svg -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltStaticBody.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltStaticBody.svg.import -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltWorld.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltWorld.svg -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Assets/VoltWorld.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Assets/VoltWorld.svg.import -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/Palette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/Palette.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/SimpleForce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/SimpleForce.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/Test.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/TypeSerializers/ArraySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/TypeSerializers/ArraySerializer.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/TypeSerializers/TypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/TypeSerializers/TypeSerializer.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/TypeSerializers/TypeSerializers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/TypeSerializers/TypeSerializers.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/Types/VoltMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/Types/VoltMatrix.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/Types/VoltRect2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/Types/VoltRect2.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/Types/VoltTransform2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/Types/VoltTransform2D.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/Utils.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VolatileBodies/VolatileArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VolatileBodies/VolatileArea.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VolatileBodies/VolatileBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VolatileBodies/VolatileBody.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VolatileBodies/VolatileKinematicBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VolatileBodies/VolatileKinematicBody.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VolatileBodies/VolatileRigidBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VolatileBodies/VolatileRigidBody.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VolatileBodies/VolatileStaticBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VolatileBodies/VolatileStaticBody.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VolatileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VolatileExtensions.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VolatileShapes/VolatileCircle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VolatileShapes/VolatileCircle.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VolatileShapes/VolatilePolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VolatileShapes/VolatilePolygon.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VolatileShapes/VolatileRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VolatileShapes/VolatileRect.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VolatileShapes/VolatileShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VolatileShapes/VolatileShape.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VolatileWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VolatileWorld.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VoltNode2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VoltNode2D.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Core/VoltType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Core/VoltType.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/FixedMath.Net/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/FixedMath.Net/LICENSE.txt -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/FixedMath.Net/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/FixedMath.Net/README.txt -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/FixedMath.Net/src/Fix64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/FixedMath.Net/src/Fix64.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/FixedMath.Net/src/Fix64SinLut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/FixedMath.Net/src/Fix64SinLut.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/FixedMath.Net/src/Fix64TanLut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/FixedMath.Net/src/Fix64TanLut.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Extensions/VoltExplosion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Extensions/VoltExplosion.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Axis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Axis.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Broadphase/IBroadphase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Broadphase/IBroadphase.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Broadphase/NaiveBroadphase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Broadphase/NaiveBroadphase.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Broadphase/TreeBroadphase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Broadphase/TreeBroadphase.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/CheapList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/CheapList.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Collision/Collision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Collision/Collision.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Collision/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Collision/Contact.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Collision/Manifold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/Collision/Manifold.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/History/HistoryBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/History/HistoryBuffer.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/History/HistoryRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/History/HistoryRecord.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/IIndexedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Internals/IIndexedValue.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/RayCast/VoltRayCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/RayCast/VoltRayCast.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/RayCast/VoltRayResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/RayCast/VoltRayResult.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Shapes/VoltCircle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Shapes/VoltCircle.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Shapes/VoltPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Shapes/VoltPolygon.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Structs/VoltShapeCollision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Structs/VoltShapeCollision.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Util/Debug/VoltDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Util/Debug/VoltDebug.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Util/Pooling/IVoltPoolable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Util/Pooling/IVoltPoolable.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Util/Pooling/VoltPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Util/Pooling/VoltPool.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Util/VoltUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/Util/VoltUtil.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltAABB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltAABB.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltBody.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltBuffer.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltCollisionFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltCollisionFilters.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltConfig.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltMath.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltShape.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltVector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltVector2.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Libraries/VolatilePhysics/VoltWorld.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugin.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VolatileNodesPlugin/VolatileNodesPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VolatileNodesPlugin/VolatileNodesPlugin.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VolatileShapePlugins/PointsEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VolatileShapePlugins/PointsEditorPlugin.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VolatileShapePlugins/VolatileCirclePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VolatileShapePlugins/VolatileCirclePlugin.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VolatileShapePlugins/VolatilePolygonPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VolatileShapePlugins/VolatilePolygonPlugin.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VolatileShapePlugins/VolatileRectPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VolatileShapePlugins/VolatileRectPlugin.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VolatileShapePlugins/VolatileShapeEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VolatileShapePlugins/VolatileShapeEditorPlugin.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/CompoundSerializedEditorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/CompoundSerializedEditorProperty.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/EditorPropertyExtens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/EditorPropertyExtens.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/ExtendedEditorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/ExtendedEditorProperty.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/ExtendedEditorPropertyParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/ExtendedEditorPropertyParser.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/Fix64EditorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/Fix64EditorProperty.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/SerializedEditorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/SerializedEditorProperty.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/SerializedEditorPropertyParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/SerializedEditorPropertyParser.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/VoltArrayEditorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/VoltArrayEditorProperty.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/VoltRect2EditorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/VoltRect2EditorProperty.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/VoltTransform2DEditorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/VoltTransform2DEditorProperty.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/VoltVector2EditorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/EditorProperties/VoltVector2EditorProperty.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/VoltPropertyHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/VoltPropertyHint.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/VoltTypesInspectorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/VoltTypesInspectorPlugin.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/VoltTypesPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/Plugins/VoltTypesPlugin/VoltTypesPlugin.cs -------------------------------------------------------------------------------- /addons/GodotFixedVolatilePhysics/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotFixedVolatilePhysics/plugin.cfg -------------------------------------------------------------------------------- /addons/GodotVisualStudioStub/StubProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/GodotVisualStudioStub/StubProject.csproj -------------------------------------------------------------------------------- /addons/VirtualJoystick/VirtualJoystick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/VirtualJoystick/VirtualJoystick.cs -------------------------------------------------------------------------------- /addons/VirtualJoystick/textures/joystick_base_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/VirtualJoystick/textures/joystick_base_outline.png -------------------------------------------------------------------------------- /addons/VirtualJoystick/textures/joystick_base_outline.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/VirtualJoystick/textures/joystick_base_outline.png.import -------------------------------------------------------------------------------- /addons/VirtualJoystick/textures/joystick_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/VirtualJoystick/textures/joystick_tip.png -------------------------------------------------------------------------------- /addons/VirtualJoystick/textures/joystick_tip.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/VirtualJoystick/textures/joystick_tip.png.import -------------------------------------------------------------------------------- /addons/VirtualJoystick/textures/joystick_tip_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/VirtualJoystick/textures/joystick_tip_arrows.png -------------------------------------------------------------------------------- /addons/VirtualJoystick/textures/joystick_tip_arrows.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/VirtualJoystick/textures/joystick_tip_arrows.png.import -------------------------------------------------------------------------------- /addons/VirtualJoystick/virtual_joystick.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/VirtualJoystick/virtual_joystick.gd -------------------------------------------------------------------------------- /addons/VirtualJoystick/virtual_joystick.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/VirtualJoystick/virtual_joystick.tscn -------------------------------------------------------------------------------- /addons/WAT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/LICENSE -------------------------------------------------------------------------------- /addons/WAT/assertions/.idea/.idea.assertions.dir/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/.idea/.idea.assertions.dir/.idea/encodings.xml -------------------------------------------------------------------------------- /addons/WAT/assertions/.idea/.idea.assertions.dir/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/.idea/.idea.assertions.dir/.idea/indexLayout.xml -------------------------------------------------------------------------------- /addons/WAT/assertions/.idea/.idea.assertions.dir/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/.idea/.idea.assertions.dir/.idea/projectSettingsUpdater.xml -------------------------------------------------------------------------------- /addons/WAT/assertions/.idea/.idea.assertions.dir/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/.idea/.idea.assertions.dir/.idea/vcs.xml -------------------------------------------------------------------------------- /addons/WAT/assertions/.idea/.idea.assertions.dir/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/.idea/.idea.assertions.dir/.idea/workspace.xml -------------------------------------------------------------------------------- /addons/WAT/assertions/assertion.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/assertion.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/assertions.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/assertions.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/boolean.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/boolean.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/collections.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/collections.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/double.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/double.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/equality.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/equality.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/file.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/file.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/folder.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/folder.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/is.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/is.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/is_not.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/is_not.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/null.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/null.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/object.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/object.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/property.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/property.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/range.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/range.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/signal.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/signal.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/string.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/string.gd -------------------------------------------------------------------------------- /addons/WAT/assertions/utility.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assertions/utility.gd -------------------------------------------------------------------------------- /addons/WAT/assets/debug_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/debug_failed.png -------------------------------------------------------------------------------- /addons/WAT/assets/debug_failed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/debug_failed.png.import -------------------------------------------------------------------------------- /addons/WAT/assets/docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/docs.svg -------------------------------------------------------------------------------- /addons/WAT/assets/docs.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/docs.svg.import -------------------------------------------------------------------------------- /addons/WAT/assets/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/failed.png -------------------------------------------------------------------------------- /addons/WAT/assets/failed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/failed.png.import -------------------------------------------------------------------------------- /addons/WAT/assets/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/folder.png -------------------------------------------------------------------------------- /addons/WAT/assets/folder.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/folder.png.import -------------------------------------------------------------------------------- /addons/WAT/assets/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/function.png -------------------------------------------------------------------------------- /addons/WAT/assets/function.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/function.png.import -------------------------------------------------------------------------------- /addons/WAT/assets/issue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/issue.svg -------------------------------------------------------------------------------- /addons/WAT/assets/issue.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/issue.svg.import -------------------------------------------------------------------------------- /addons/WAT/assets/kofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/kofi.png -------------------------------------------------------------------------------- /addons/WAT/assets/kofi.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/kofi.png.import -------------------------------------------------------------------------------- /addons/WAT/assets/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/label.png -------------------------------------------------------------------------------- /addons/WAT/assets/label.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/label.png.import -------------------------------------------------------------------------------- /addons/WAT/assets/passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/passed.png -------------------------------------------------------------------------------- /addons/WAT/assets/passed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/passed.png.import -------------------------------------------------------------------------------- /addons/WAT/assets/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/play.png -------------------------------------------------------------------------------- /addons/WAT/assets/play.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/play.png.import -------------------------------------------------------------------------------- /addons/WAT/assets/play_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/play_debug.png -------------------------------------------------------------------------------- /addons/WAT/assets/play_debug.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/play_debug.png.import -------------------------------------------------------------------------------- /addons/WAT/assets/play_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/play_failed.png -------------------------------------------------------------------------------- /addons/WAT/assets/play_failed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/play_failed.png.import -------------------------------------------------------------------------------- /addons/WAT/assets/request_docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/request_docs.svg -------------------------------------------------------------------------------- /addons/WAT/assets/request_docs.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/request_docs.svg.import -------------------------------------------------------------------------------- /addons/WAT/assets/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/script.png -------------------------------------------------------------------------------- /addons/WAT/assets/script.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/script.png.import -------------------------------------------------------------------------------- /addons/WAT/assets/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/timer.png -------------------------------------------------------------------------------- /addons/WAT/assets/timer.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/assets/timer.png.import -------------------------------------------------------------------------------- /addons/WAT/cli.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/cli.tscn -------------------------------------------------------------------------------- /addons/WAT/double/factory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/double/factory.gd -------------------------------------------------------------------------------- /addons/WAT/double/method.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/double/method.gd -------------------------------------------------------------------------------- /addons/WAT/double/methods.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/double/methods.gd -------------------------------------------------------------------------------- /addons/WAT/double/registry.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/double/registry.gd -------------------------------------------------------------------------------- /addons/WAT/double/scene_director.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/double/scene_director.gd -------------------------------------------------------------------------------- /addons/WAT/double/script_director.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/double/script_director.gd -------------------------------------------------------------------------------- /addons/WAT/double/script_writer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/double/script_writer.gd -------------------------------------------------------------------------------- /addons/WAT/filesystem/directory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/filesystem/directory.gd -------------------------------------------------------------------------------- /addons/WAT/filesystem/failed.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/filesystem/failed.gd -------------------------------------------------------------------------------- /addons/WAT/filesystem/filesystem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/filesystem/filesystem.gd -------------------------------------------------------------------------------- /addons/WAT/filesystem/method.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/filesystem/method.gd -------------------------------------------------------------------------------- /addons/WAT/filesystem/script.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/filesystem/script.gd -------------------------------------------------------------------------------- /addons/WAT/filesystem/tagged.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/filesystem/tagged.gd -------------------------------------------------------------------------------- /addons/WAT/filesystem/tracker.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/filesystem/tracker.gd -------------------------------------------------------------------------------- /addons/WAT/filesystem/validator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/filesystem/validator.gd -------------------------------------------------------------------------------- /addons/WAT/filesystem/yield_calculator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/filesystem/yield_calculator.gd -------------------------------------------------------------------------------- /addons/WAT/gui.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/gui.tscn -------------------------------------------------------------------------------- /addons/WAT/io/junit_xml.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/io/junit_xml.gd -------------------------------------------------------------------------------- /addons/WAT/io/metadata.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/io/metadata.gd -------------------------------------------------------------------------------- /addons/WAT/mono/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/Attributes.cs -------------------------------------------------------------------------------- /addons/WAT/mono/BuildScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/BuildScene.cs -------------------------------------------------------------------------------- /addons/WAT/mono/BuildScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/BuildScene.tscn -------------------------------------------------------------------------------- /addons/WAT/mono/GDScriptWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/GDScriptWrapper.cs -------------------------------------------------------------------------------- /addons/WAT/mono/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/Test.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/Assertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/Assertion.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/Assertions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/Assertions.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/Boolean.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/Equality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/Equality.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/File.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/Is.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/Is.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/Null.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/Null.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/ObjectX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/ObjectX.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/Property.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/Range.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/Signal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/Signal.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/StringX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/StringX.cs -------------------------------------------------------------------------------- /addons/WAT/mono/assertions/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/mono/assertions/Utility.cs -------------------------------------------------------------------------------- /addons/WAT/namespace.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/namespace.gd -------------------------------------------------------------------------------- /addons/WAT/network/test_client.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/network/test_client.gd -------------------------------------------------------------------------------- /addons/WAT/network/test_network.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/network/test_network.gd -------------------------------------------------------------------------------- /addons/WAT/network/test_server.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/network/test_server.gd -------------------------------------------------------------------------------- /addons/WAT/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/plugin.cfg -------------------------------------------------------------------------------- /addons/WAT/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/plugin.gd -------------------------------------------------------------------------------- /addons/WAT/runner/TestRunner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/runner/TestRunner.gd -------------------------------------------------------------------------------- /addons/WAT/runner/TestRunner.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/runner/TestRunner.tscn -------------------------------------------------------------------------------- /addons/WAT/runner/splitter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/runner/splitter.gd -------------------------------------------------------------------------------- /addons/WAT/runner/test_controller.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/runner/test_controller.gd -------------------------------------------------------------------------------- /addons/WAT/settings.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/settings.gd -------------------------------------------------------------------------------- /addons/WAT/test/any.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/test/any.gd -------------------------------------------------------------------------------- /addons/WAT/test/case.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/test/case.gd -------------------------------------------------------------------------------- /addons/WAT/test/parameters.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/test/parameters.gd -------------------------------------------------------------------------------- /addons/WAT/test/recorder.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/test/recorder.gd -------------------------------------------------------------------------------- /addons/WAT/test/test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/test/test.gd -------------------------------------------------------------------------------- /addons/WAT/test/watcher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/test/watcher.gd -------------------------------------------------------------------------------- /addons/WAT/test/yielder.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/test/yielder.gd -------------------------------------------------------------------------------- /addons/WAT/ui/cli.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/cli.gd -------------------------------------------------------------------------------- /addons/WAT/ui/docker.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/docker.gd -------------------------------------------------------------------------------- /addons/WAT/ui/gui.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/gui.gd -------------------------------------------------------------------------------- /addons/WAT/ui/links.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/links.gd -------------------------------------------------------------------------------- /addons/WAT/ui/results/assertion.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/results/assertion.gd -------------------------------------------------------------------------------- /addons/WAT/ui/results/counter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/results/counter.gd -------------------------------------------------------------------------------- /addons/WAT/ui/results/method.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/results/method.gd -------------------------------------------------------------------------------- /addons/WAT/ui/results/script.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/results/script.gd -------------------------------------------------------------------------------- /addons/WAT/ui/results/tab.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/results/tab.gd -------------------------------------------------------------------------------- /addons/WAT/ui/results/tab_container.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/results/tab_container.gd -------------------------------------------------------------------------------- /addons/WAT/ui/results/tree.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/results/tree.gd -------------------------------------------------------------------------------- /addons/WAT/ui/scaling/dynamic_size_spinbox.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/scaling/dynamic_size_spinbox.gd -------------------------------------------------------------------------------- /addons/WAT/ui/scaling/icons.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/scaling/icons.gd -------------------------------------------------------------------------------- /addons/WAT/ui/scaling/plugin_assets_registry.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/scaling/plugin_assets_registry.gd -------------------------------------------------------------------------------- /addons/WAT/ui/scaling/scene_tree_adjuster.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/scaling/scene_tree_adjuster.gd -------------------------------------------------------------------------------- /addons/WAT/ui/summary.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/summary.gd -------------------------------------------------------------------------------- /addons/WAT/ui/test_menu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/addons/WAT/ui/test_menu.gd -------------------------------------------------------------------------------- /bootsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/bootsplash.png -------------------------------------------------------------------------------- /bootsplash.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/bootsplash.png.import -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/project.godot -------------------------------------------------------------------------------- /tests/Manual/Physics/CompleteTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/Physics/CompleteTest.tscn -------------------------------------------------------------------------------- /tests/Manual/Physics/FPSCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/Physics/FPSCounter.cs -------------------------------------------------------------------------------- /tests/Manual/Physics/GDKinematicMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/Physics/GDKinematicMovement.cs -------------------------------------------------------------------------------- /tests/Manual/Physics/GDPhysics2DTesting.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/Physics/GDPhysics2DTesting.tscn -------------------------------------------------------------------------------- /tests/Manual/Physics/PhysicsHighEndTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/Physics/PhysicsHighEndTest.tscn -------------------------------------------------------------------------------- /tests/Manual/Physics/PhysicsLowEndTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/Physics/PhysicsLowEndTest.tscn -------------------------------------------------------------------------------- /tests/Manual/Physics/PolygonTests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/Physics/PolygonTests.tscn -------------------------------------------------------------------------------- /tests/Manual/Physics/Prefabs/DispersedDynamicGroupPrefab.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/Physics/Prefabs/DispersedDynamicGroupPrefab.tscn -------------------------------------------------------------------------------- /tests/Manual/Physics/Prefabs/DynamicGroupPrefab.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/Physics/Prefabs/DynamicGroupPrefab.tscn -------------------------------------------------------------------------------- /tests/Manual/Physics/Prefabs/VolatileAreaTestPrefab.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/Physics/Prefabs/VolatileAreaTestPrefab.tscn -------------------------------------------------------------------------------- /tests/Manual/Physics/Prefabs/VolatileKinematicMovementPrefab.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/Physics/Prefabs/VolatileKinematicMovementPrefab.tscn -------------------------------------------------------------------------------- /tests/Manual/VoltNode2D/FixedMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/VoltNode2D/FixedMovement.cs -------------------------------------------------------------------------------- /tests/Manual/VoltNode2D/VolatileAreaTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/VoltNode2D/VolatileAreaTest.cs -------------------------------------------------------------------------------- /tests/Manual/VoltNode2D/VolatileKinematicBodyMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/VoltNode2D/VolatileKinematicBodyMovement.cs -------------------------------------------------------------------------------- /tests/Manual/VoltNode2D/VoltNode2DTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/Manual/VoltNode2D/VoltNode2DTest.tscn -------------------------------------------------------------------------------- /tests/VoltMatrixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/VoltMatrixTests.cs -------------------------------------------------------------------------------- /tests/VoltNode2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/VoltNode2DTests.cs -------------------------------------------------------------------------------- /tests/VoltTransform2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fractural/GodotFixedVolatilePhysics/HEAD/tests/VoltTransform2DTests.cs --------------------------------------------------------------------------------