Can somebody tell me whether it is possible to instantiate a non - prefab object in a photon network? I have some objects created in runtime and I want to sync them by photon network. Please help me! Thanks!
2 Answers
You can use RPCs and RaiseEvent and then manually allocate photonView on object. In my project I using RaiseEvents and custom data and position controllers that allow me to spawn and sync more than 999 objects (photonView count restriction) and sync data only on demand, in this case, you need to share between users some guid and store this in controllers to find this in list or dictionary of spawned objects.