The Chaos of Destruction: Destructable Objects in Boogie Beyond
- Abyssal Inc.
- Jan 16, 2024
- 3 min read
Hi! This post is about the progress of destructible objects in Boogie Beyond. Object destruction is a feature that helps with immersion, realism and potentially some interesting character interactions. This part of the project went through a few design and implementation changes.
We started out using Unreal Engine 5’s Chaos Destruction system to destroy the objects. To keep performance reasonable, some constraints were placed on how many pieces the objects could break into. The number of fractures, which determines the number of shards for the object, must be optimized: not so many that it is detrimental to frame rate but not so few that it looks unrealistic.
We then attached a Cascade particle system to enhance the shattering of the glass and help support the concept of “fancy” drinks (which was later changed). This requires telling the shattered particle system when to activate. We first tried using OnPhysicsHit, but this caused the particle system to activate on the smallest impact with the environment, which was not the reaction we wanted. Next, we used OnChaosDestroy, which we implemented using an event binding to trigger activation only when Chaos destruction occurs. This was effective, but later, as described in this post, we decided to move away from Chaos destruction while still using some parts of the Geometry Collections.
The next challenge was implementing the interaction between the VR grab component and the Geometry Collection (the Chaos engine mesh), at this time still using Chaos destruction. The first problem was that the glass was stuck to the hand and would not detach from the hand or break when hit with another object or surface. After forcing the mesh to detach, the effect changed to where when the hand let go of the object, or ‘detached,’ the object seemed to vanish. We later found through debugging that it was not disappearing, but instead translating itself far away.
Due to time constraints, rather than continuing to debug this issue, we decided to simplify the problem by shifting away from Chaos destruction. It was decided that we would use the “spawn and delete” method, where each shard is its own actor, spawned in after a hit of proper magnitude. After spawning the shards, the original mesh’s visibility is turned off. The shards are then given the glass’s world location, rotation, and scale. After spawning the new pieces, the original mesh is deleted. The wine glass has an extra feature of a “mesh swap,” where the original actor is not deleted, but instead, the mesh of the complete wine glass is replaced with the stem shard, to give the wine glasses a more realistic feel. (We considered using “mesh swap” for the shards as well but there was a concern that having all the shards as components of the same actor could cause some interaction issue, i.e. the shards would not fall, trying to pick up a piece would make all the shards move, etc.).
The last step is to make the glass shards react to the shattering. On impact, each shard will be pushed away from the point of impact, based on the strength of the force. As before, we also added a particle system for more realism, this time using Niagara, which has more options and flexibility.
We are still waiting for final assets from our 3D modelers, which will be the last piece to complete implementation of destructible objects. Ultimately, we hope that the work put into this system allows us to provide a chaotic and enjoyable experience for the player.
Comentarios