All Projects → peterlnewton → LocalSimulation

peterlnewton / LocalSimulation

Licence: MIT license
This plugin allows you to essentially create PxScene or Physic Scenes by placing an Actor, and adding other Static Mesh Components and soon Skeletal Mesh components within this space. Adding Constraints, and Forces will work as expected, but now with the additional layer of abstraction so that simulation can be anchored to a transform.

Programming Languages

C++
36643 projects - #6 most used programming language
C#
18002 projects
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to LocalSimulation

Ue4 Style Guide
An attempt to make Unreal Engine 4 projects more consistent
Stars: ✭ 2,656 (+6223.81%)
Mutual labels:  blueprint, unreal, unreal-engine, ue4, udk
ue5-style-guide
An attempt to make Unreal Engine 4 projects more consistent
Stars: ✭ 2,892 (+6785.71%)
Mutual labels:  blueprint, unreal, unreal-engine, ue4, udk
stomt-unreal-plugin
Collect feedback in-game/in-app with STOMT for Unreal Engine.
Stars: ✭ 23 (-45.24%)
Mutual labels:  blueprint, unreal, unreal-engine, ue4
Varest
REST API plugin for Unreal Engine 4 - we love restfull backend and JSON communications!
Stars: ✭ 707 (+1583.33%)
Mutual labels:  blueprint, unreal-engine, ue4
DualSenseWindows UE4
Unreal Engine 4 port of the Windows API for the PS5 DualSense controller created at Ohjurot/DualSense-Windows
Stars: ✭ 25 (-40.48%)
Mutual labels:  unreal, unreal-engine, ue4
global-event-system-ue4
Loosely coupled internal event system plugin for the Unreal Engine.
Stars: ✭ 122 (+190.48%)
Mutual labels:  blueprint, unreal-engine, ue4
Dungeontemplatelibrary
🌏: Dungeon free resources (terrain & roguelike generation)
Stars: ✭ 595 (+1316.67%)
Mutual labels:  vr, unreal-engine, ue4
Buoyancysystem
A system for buoyancy and boat physics in Unreal Engine 4.
Stars: ✭ 87 (+107.14%)
Mutual labels:  physics, unreal-engine, ue4
CrashlyticsKit
The most powerful, yet lightest weight crash reporting solution for Unreal Engine 4
Stars: ✭ 25 (-40.48%)
Mutual labels:  blueprint, unreal-engine, ue4
BMeshUnreal
Based on BMesh for Unity (https://github.com/eliemichel/BMeshUnity). It provides a half-edge data structure inspired by Blender's BMesh, which makes many mesh manipulation operations simpler. Especially useful when using mesh data for logical instead of visual purposes (e.g. irregular grids)
Stars: ✭ 45 (+7.14%)
Mutual labels:  unreal, unreal-engine, ue4
ue4-uitween
Unreal 4 UMG UI tweening plugin in C++
Stars: ✭ 178 (+323.81%)
Mutual labels:  unreal, unreal-engine, ue4
RyansUE4Helpers
Extremely helpful helper functions for developing Blueprint and C++ projects in Unreal Engine.
Stars: ✭ 55 (+30.95%)
Mutual labels:  blueprint, unreal, ue4
UT GameEventSystem
A flexible event system in Unreal Engine 4
Stars: ✭ 33 (-21.43%)
Mutual labels:  unreal, unreal-engine, ue4
RuntimeBPs
This project allows for visual scripting in UE4 similar to Blueprints, but at runtime. The way this is set up does not make use of any UE4 boilerplate and could with a few adjustments be used in another engine.
Stars: ✭ 77 (+83.33%)
Mutual labels:  unreal, unreal-engine, ue4
Unreal Polygonal Map Gen
An Unreal Engine 4 implementation of the Polygonal Map Generator for generating islands found at http://www-cs-students.stanford.edu/~amitp/game-programming/polygon-map-generation/
Stars: ✭ 229 (+445.24%)
Mutual labels:  unreal, unreal-engine, ue4
Climbing Movement Component
Climbing Movement Component for Unreal Engine.
Stars: ✭ 181 (+330.95%)
Mutual labels:  unreal, unreal-engine, ue4
Ueviewer
Viewer and exporter for Unreal Engine 1-4 assets (UE Viewer).
Stars: ✭ 1,083 (+2478.57%)
Mutual labels:  unreal, unreal-engine, ue4
Ue4 Gitignore
A git setup example with git-lfs for Unreal Engine 4 projects.
Stars: ✭ 150 (+257.14%)
Mutual labels:  unreal, unreal-engine, ue4
Psrealvehicle
Plugin for Unreal Engine 4 with simple force-driven vehicle simulation
Stars: ✭ 92 (+119.05%)
Mutual labels:  physics, unreal-engine, ue4
Unreal-Binary-Builder
An application designed to create installed Unreal Engine builds (aka Rocket builds) from Unreal Engine GitHub source.
Stars: ✭ 554 (+1219.05%)
Mutual labels:  unreal, unreal-engine, ue4

LocalSimulation

Abstraction of Immediate Physx API used to create low cost Physics Simulations within Unreal Engine 4.

This was made possible thanks to the work by 4.16 from UE4 Devs new Immediate Physics. https://www.unrealengine.com/en-US/blog/gdc-2017-making-physics-based-mayhem

Wouldn't be here without their work exposing PhysX API.

I've taken it a step further, and abtracted the implementation using a Blueprint Actor. Now you can control low level physics with just a few commands in Blueprint. :)

Version

4.17.2 (Planned)

4.16.2 (Currently)

Why

This was made to allow you to easily ignore world forces for physics simulations i.e. playing catch on a train. Imagine now you can play catch, and the simulation would respond in a way that the world isn't moving at all. Allowing for predictable results in environment that require this behavior.

LocalSimulation

This plugin allows you to essentially create PxScene or Physic Scenes by placing an Actor called Local Simulation Volume, and adding other Static Mesh Components and soon Skeletal Mesh components within this Actor. Adding Constraints, and Forces will work as expected, but now with the additional layer of abstraction so that world simulation can be associated with a transform.

TODO

Skeletal Meshes

7/16/2017

Solution ready for implementation. Transform issue was making joints impossible, which make Skeletal Meshes worthless. Next push will contain first pass implementation of Skeletal Mesh Components. After that, I will slowly abstract the Blueprint commands further to support Mesh Components, to make use of this Actor much easier. 6/31/2017 Tested plan yet to implement, but wanting a better solution.

Create bodies of Skeletal Mesh, then copy Skeletal Mesh to UPoseableMeshComponent. Map bodies to new UPoseableMeshComponent and blend Animation from original Skeletal Mesh per bone as determiend by flag which says its 'Default/Kinematic/Simualted'.

Transform / Scale

7/16/2017

Appears this is because there is a ActorToBody offset that wasn't adjusted for. This has been affecting all aspects of Physics, but it is now rememedied. Scale issue continues to percist.

6/31/2017

Appeared to get weird effects when scaling of components, but unable to decide exactly what is influencing it. Currently I believe it has to do with Static vs (Kinematic / Dynamic?). Still not 100% sure but really sketchy behavior which needs to be made clear.

Removing Joints / Acors

7/16/2017

Everything has been solved. Unreal has a flipped frame of reference, and on top of the transform offset from the body. It wasn't clear what was happening with the joints. Now that is solved, next push will include polished integration of joints. 6/31/2017 This works for the most part, but also needs to be reviewed.

Adding Forces to Bodies / Simulation space.

7/16/2017

R&D done. This will be imeplemented after the completely adaption of Sketal & Static rigidbodies. As abstracting the two components will make operations which they both will inevitability need, easier to use. 6/31/2017 Need to make this possible.

Updating Joints / Actors

7/16/2017

This problem is now apparrent now that more things work as expected. That is happening is that in-between Physic Simuations aka where Contacts occur. Removing & Adding joints can introduce large amount of forces. It would also be nice to have the ability to change from static, kinematic, and dynamic at runtime. Given this is an underlying proxy, this "should just work".

Etc functions I'm not thinking of that are necessary.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].