I have a plugin on SDK V1 which uses SDKWorldInstanceBase. It is based on template from https://github.com/Scirra/Construct-Addon-SDK/blob/main/plugin-sdk/v1/editorTextPlugin/c3runtime/instance.js and have the same Draw() and _MaybeCreateRendererText() methods.
When properties are changed via actions (like _SetText) my plugin calls this._runtime.UpdateRender() and Draw() method redraws object.
During the porting my plugin on SDK V2 I noticed that this.runtime from ISDKWorldInstanceBase doesn't have updateRender() or any similar methods for force redrawing.
How could I call redrawing in SDK V2?