When writing code dealing with physics and physics Scenes, note the following:
In order for a physics Scene to be independent, it must be loaded with the parameter that makes it independent. It can’t be done after the Scene has been loaded or dynamically created. This is demonstrated in Start(), in the code example.
A Scene that’s loaded this way will not auto-simulate. Because of this, you should manually call Simulate() on the physics Scene. You can get the physics Scene from the Scene object. This is demonstrated in FixedUpdate(), in the code example.
Any raycasts or shapecasts using Physics.Raycast, etc., will not interact with objects in a local physics Scene. Instead, update your code to use the casting methods on the physicsScene object. This will also work for a Scene that was not loaded with an independent physics Scene.
These are just a few things to keep in mind when using this new feature.
Multi-Scene Physics opens up many new possibilities, such as trajectory simulations for shooter games, or ghost effects in which colliders apply only to objects and characters in one Scene.