Loading video...

Video Failed to Load

Go Home

Buttery-smooth suspension bridge physics in my SM64 engine. It utilizes real-world spring physics! A cool byproduct of this is the emergence of standing wave harmonics.

231,647 views • 1 year ago •via X (Twitter)

10 Comments

Rovertronic's profile picture
Rovertronic1 year ago

Vertex animation alone isn't that impressive. Custom vertex animations have been done several times before. The awesome part here is the scalability. You can click on any arbitrary mesh in Blender and turn it into a bridge in under a minute, using just a start and end empty.

wicked little (ditch) critter's profile picture
wicked little (ditch) critter1 year ago

mfw when i get fr*aking ground pounded by Mario Brother

Kinetic Zen's profile picture
Kinetic Zen1 year ago

OK, but why is it the YIIK guy

Page to Pixel Publishing's profile picture
Page to Pixel Publishing2 years ago

The Art of Flight is a homage to 80s/90s arcade action shmups with a fresh twist on the genre. Pilot multiple ships at the same time to take on oncoming waves of enemies in this fast paced space shooter. Wishlist on Steam today!

goot's profile picture
goot1 year ago

Like that’s cool and all but why is the suspension bridge Alex Yiik

PunishedColonel's profile picture
PunishedColonel1 year ago

whys it made of yiik

Akarenga Ranger's profile picture
Akarenga Ranger1 year ago

Now THIS is vibrating with motion

sincerely, Jazzkid's profile picture
sincerely, Jazzkid1 year ago

lmao it's great that you can't tell by looking whether this is sm64 or MM anymore due to recomp

Rovertronic's profile picture
Rovertronic1 year ago

My engine also has a max framerate of 60, so that also probably helps it look similar to recomp footage.

carlo's profile picture
carlo1 year ago

Is that…Alex from YIIK?

Related Videos

Why the character movement in my custom game engine felt janky and how I fixed it. In a game engine, most often, a character moves using the physics engine. Meaning, the player is not just a coordinate in space but a physical body. It has velocity, it handles collisions, and it interacts with the world. Now, as you might know, physics engines need stability. If you run them at variable framerates, things start breaking. Objects phase through walls or fly off into space because the math becomes unpredictable. This is why most game engines lock their physics loop to a 60Hz fixed rate. But here’s the problem: If you have a high-end system, you don't want to limit it at 60 FPS. That's a waste of good hardware. Now, that said, if the GPU is rendering at 144 FPS but the player's position (physics driven) only updates 60 times a second, it creates a micro-stutter that ruins the "smooth" feel of the game. A good way to fix this is to treat the character as two separate things: 1. The Physics Body (Invisible part): This is the "real" character. It lives in the 60Hz physics world, it moves the player and handles collisions. 2. The Visual Model and Camera (Visible part): This is what the player actually sees. It doesn't care about collisions, its only job is to look nice and smooth at whatever framerate the GPU is pushing. Once you have this separation, you can use interpolation to keep them in sync. Every time the physics clock ticks, you save the previous position of the invisible body before moving it to the new one. Between those ticks, calculate how far we are between the last physics update and the next one. By using this to drive the visible parts of the game, the stutters disappear. The physics loop stays fixed behind the scenes, while the visuals slide smoothly between the snapshots. Example: - Right after a tick: blend_weight= 0.0 (The visual model stays at the old physics position). - Halfway to the next: blend_weight= 0.5 (The visual model slides to the middle point). - Just before the next: blend_weight= 0.9 (The visual model is almost at the new physics position). Pro-Tip A critical mistake I made initially, and one many devs make, is parenting the camera and visible parts directly to the player body. If you do this, the camera inherits the discrete 60Hz physics movement by default. In that setup, interpolation won't work because the camera is "stuck" to the physics clock. For this fix to work you must decouple the camera and visuals from the body and move them separately. Player movement processing in Detis Engine: - fixed_process: Physics runs at 60Hz. Handles collisions and raw movement. - process: Variable rate. Mainly used for player input caching in the player case. - late_process: Variable rate. Handles interpolated camera movement after physics and everything else is done being processed. - render. Submits the final interpolated transforms to the GPU. The test environment in the video is running on an old 2070-based laptop. Hopefully the video compression won't introduce any stutter... I’m sharing this in hopes it helps a fellow dev. Cheers.

Ioannis Koukourakis

48,636 views • 7 months ago

Eric Weinstein unleashes a chilling take on physics: The field froze in 1973—no meaningful change to the Lagrangian (the core mathematical engine of physics) since then, despite decades of effort. "No new ideas about how to change the Lagrangian that anybody finds exciting... Nobody goes to Stockholm to get a Nobel Prize because they changed the Lagrangian of the world." He argues a bizarre force field slams anyone exploring truly revolutionary ideas—like multiple dimensions of time or breakthroughs that could upend power balances—while physics is the only profession without full free speech. Under the "Restricted Data" doctrine (from the 1946/1954 Atomic Energy Acts & "Born Secret"), any new physics insight that might relate to nuclear weapons becomes classified the instant it's written or spoken—even if you're not in government. Violate it? You could face Espionage Act charges, potentially capital offenses. Weinstein's bet: There's no secret government physics office holding breakthroughs. Instead, smart people long ago decided open physics was too dangerous—because real advances could hand the President fusion power or worse. "The Department of Energy is really the Department of Physics... We're scared of the possibility of physics? We don't even want to talk about it." Clip from this 3:49 mind-bender—physics as the silenced superpower. Does this explain the stagnation... or is string theory just a dead-end distraction? Is physics deliberately "safe" to avoid existential risks? Your take—drop it below.

Camus

20,754 views • 5 months ago

Everything you love about generative models — now powered by real physics! Announcing the Genesis project — after a 24-month large-scale research collaboration involving over 20 research labs — a generative physics engine able to generate 4D dynamical worlds powered by a physics simulation platform designed for general-purpose robotics and physical AI applications. Genesis's physics engine is developed in pure Python, while being 10-80x faster than existing GPU-accelerated stacks like Isaac Gym and MJX. It delivers a simulation speed ~430,000 faster than in real-time, and takes only 26 seconds to train a robotic locomotion policy transferrable to the real world on a single RTX4090 (see tutorial: The Genesis physics engine and simulation platform is fully open source at We'll gradually roll out access to our generative framework in the near future. Genesis implements a unified simulation framework all from scratch, integrating a wide spectrum of state-of-the-art physics solvers, allowing simulation of the whole physical world in a virtual realm with the highest realism. We aim to build a universal data engine that leverages an upper-level generative framework to autonomously create physical worlds, together with various modes of data, including environments, camera motions, robotic task proposals, reward functions, robot policies, character motions, fully interactive 3D scenes, open-world articulated assets, and more, aiming towards fully automated data generation for robotics, physical AI and other applications. Open Source Code: Project webpage: Documentation: 1/n

Zhou Xian

3,818,940 views • 1 year ago