(3D) Deterministic Bounce Prediction

Like what your seeing?

Support us as a GitHub Sponsor and get instant access to all our assets, exclusive tools and assets, escalated support and issue tracking and our gratitude. These articles are made possible by our GitHub Sponsors ... become a sponsor today!

Introduction

This scene demonstrates the use of Trick Shot and the Trick Shot Line component to predict the path a thrown object and will take into account bounces.

The tool can be used to quickly and easily fire physically simulated projectiles from throwing a ball or grenade to shooting arrows, firing cannons and more. The Trick Shot tool handles all the calculations for you including launching the projectile via the "Shoot" method.

The projectile launched by Trick Shot uses the Ballistic Path Follow component which allows the projectile to accurately follow the pre-planned path and to optionally react to changes in the environment as required.

What do I Learn?

  1. How to use Trick Shot to plan and execute shots

  2. How to use Ballistic Path Follow to manage projectiles

  3. How to display a trajectory using the Trick Shot Line component.

Objects

Emitter GameObject

The emitter game object does all the real work in the sample scene and houses the Trick Shot component and the Trick Shot Line component. These do the work of calculating the path and displaying it. A simple call to Shoot then causes the Trick Shot component to launch a projectile which will obey the path.

The trick shot component is used to predict a trajectory and "shoot" a projectile that will obey that planned path e.g. a Ballistic Path Follow projectile. This allows for accurate deterministic prediction of bounces and collisions, the ability to handle unexpected (dynamic) collisions and changes to the environment.

The trick shot line component is used to control the Line Renderer and draw the resulting path. It simply reads the prediction from the Trick Shot component and updates the points displayed by the Line Renderer.

Sphere GameObject

A simple stand in for our projectile which uses the Ballistic Path Follow component to track the planned path.

Last updated