Just another video of something else possible with the engine.
Have a great weekend
edit: repo https://github.com/Lumak/Urho3D-Spherical-World
edit2: added square world physics sample
Just another video of something else possible with the engine.
Have a great weekend
edit: repo https://github.com/Lumak/Urho3D-Spherical-World
edit2: added square world physics sample
How did you accomplish this?
Can you talk about the techniques that you used?
Sure. It’s not complicated as it seems, but I did come across some odd behaviors.
First, you’ll need to calculate the char’s direction to center of the sphere which becomes new gravity and apply:
body->SetGravityOverride(dirToCenterOfSphere * 9.81f);
every frame. The
dirToCenterOfSphere * -1.0f
becomes char’s normal, and from this you can derive the forward and right vectors which then provide the orientation for the character, i.e. Quaternion(right, up, forward).
Some odd behaviors that I’m seeing are that if you use inertia bounding box derived from a capsule, physics wants to pull the body back up to the top (like a magnet) ,and second is that there seems to be some odd acceleration going on when the char is 1/4 and 3/4 way down the sphere, something I’m still trying to figure out.
*edit: err, I shouldn’t say acceleration at 1/4 and 3/4 because char doesn’t move if I stop moving. It’s more like no braking is applied at those areas.
added a link to the repo - see the1st post.
fixed the jump force error, and added a square world
A couple more changes:
-corrected rotation calc. on surface
-renamed to cubic world
That should be the last of it. Let me know if you find any problem. Thx.
This is awesome. How does character behave when you jump over the edge of the cube?
It transitions properly.
Here’s a vid:
edit: provided a url
edit2: something weird is going on with youtube and I can’t provide a viewable link.
I can’t consider this blinking as truly 'properly transition’
It seems that character movement (I mean, orientation) is not smooth. Is it hard to fix?
I’m not sure how else to transition it, but sounds like you’ve seen it done differently some where. Can you provide a video link?
edit: not sure if smoothing out the camera or character orientation or both would be required, or if attempting this smooth transition would be harder on the eyes. I’d like to see an example.
Portal 2 has pretty nice transition when UP is changed.
Cylindrical gravity for the edges and spherical for the corners would give the transitions there a more natural feel, I think.
@Eugene @Modanung
Okay, thanks for the info. I’ve seen the Portal2 vid and see that the dynamics on surface changes are treated as a cylindrical surface, where the character sticks to the surface as it transitions from one surface to the other. But that’s not the dynamics that I’m looking to achieve. What I’m looking for is that when a character steps off an edge, I want it to actually fall and use physics to transition to a new surface gravity. I did add a few frames to lerp the character’s orientation opposed to a single frame transition. It looks better.
Thanks for the info! I was really curious of it. Keep the great work!