'RealtimeComponent has been replaced with RealtimeComponent<TModel>. Please upgrade
If i 'm getting this message on a script what features am I missing particularly on the mode?
model property of the correct type, which you can use to access your synchronized data RealtimeComponent documentation (https://normcore.io/documentation/reference/classes/Normal.Realtime.RealtimeComponent%601).OnRealtimeModelReplaced method: This method is called when the model is replaced, allowing you to set up event listeners and initialize your component based on the model's state Synchronizing Custom Data (https://normcore.io/documentation/realtime/synchronizing-custom-data#creating-a-realtimecomponent-subclass).RealtimeComponent.OnRealtimeModelReplaced method to set up any necessary event listeners or initialization.model property to access your synchronized data instead of manually managing a model property.OnRealtimeModelReplaced method. This method was introduced as part of the improvements in Normcore 2.0.RealtimeComponent class didn't have the generic type parameter and handled model replacement differently. The OnRealtimeModelReplaced method is a feature specific to Normcore 2.0 and later versions, which use the class Upgrading from Normcore 1 to Normcore 2 (https://normcore.io/documentation/guides/upgrading-from-normcore-1-to-normcore-2).OnRealtimeModelReplaced method and other improvements, it's recommended to upgrade to Normcore 2.0 or later. The upgrade process is designed to be relatively straightforward for most projects and brings significant improvements in transform syncing, voice chat, and overall latency Upgrading from Normcore 1 to Normcore 2 (https://normcore.io/documentation/guides/upgrading-from-normcore-1-to-normcore-2).OnRealtimeModelReplaced method, which provides a cleaner way to handle model changes and set up event listeners Synchronizing Custom Data (https://normcore.io/documentation/realtime/synchronizing-custom-data#creating-a-realtimecomponent-subclass).RealtimeComponent<TModel>RealtimeComponent<TModel>RealtimeComponent<TModel>RealtimeComponent<TModel>TModelRealtimeComponent<YourModelType>``
By upgrading to