(
syncOptions: GetNetworkSyncDataOptions
)
| 114 | } |
| 115 | |
| 116 | getNetworkSyncData( |
| 117 | syncOptions: GetNetworkSyncDataOptions |
| 118 | ): VideoObjectNetworkSyncData { |
| 119 | return { |
| 120 | ...super.getNetworkSyncData(syncOptions), |
| 121 | op: this._opacity, |
| 122 | pla: this.isPlayed(), |
| 123 | loop: this.isLooped(), |
| 124 | ct: this.getCurrentTime(), |
| 125 | ps: this.getPlaybackSpeed(), |
| 126 | }; |
| 127 | } |
| 128 | |
| 129 | updateFromNetworkSyncData( |
| 130 | syncData: VideoObjectNetworkSyncData, |
nothing calls this directly
no test coverage detected