Include code examples for common use cases to help developers understand how to use the SDK effectively.
MotionMixManager.StartSession();
MotionMixManager.StartMultiplayerSession(string RoomName);
MotionMixManager.SetPlayerID(string playerID);
MotionMixManager.RecordFloor(meshObject); // meshObject - Game Object with all scene/environment meshes, which // are static and non-interactable
This applies to all the meshes other than the scene mesh recorded in the previous step
MotionMixManager.RecordMesh(meshObject); // meshObject - Game Object with mesh filter components in any of the // children including itself
This applies for dynamically loaded players in a multiplayer scenario
MotionMixManager.RecordPlayer(playerObject);
Last updated 6 months ago