Version 1 (Obsolete)

Version 2 is currently available in releases 4.2.0 and later.

Version 1 is the first and older implementation of prediction which utilizes PredictedObject rather than state forwarding.

Prediction 1 has been obsoleted and will no longer be supported. Please use Prediction 2.

Enabling Prediction 1

Prediction 1 is no longer the default prediction system. To enable or disable Prediction 1 use the Fish-Networking menu to.

When developing for Prediction 1 you may wrap code in defines allowing the code to only be active when Prediction 1 is enabled.

#if PREDICTION_1
    public class NewMotor : NetworkBehaviour
    {
    }
#endif

Last updated