diff --git a/.github/workflows/build-listing.yml b/.github/workflows/build-listing.yml deleted file mode 100644 index eedb46a..0000000 --- a/.github/workflows/build-listing.yml +++ /dev/null @@ -1,68 +0,0 @@ -name: Build Repo Listing - -env: - CurrentPackageName: com.texelsaur.video - listPublishDirectory: Website - pathToCi: ci - -on: - workflow_dispatch: - workflow_run: - workflows: [Build Release] - types: - - completed - release: - types: [published, created, edited, unpublished, deleted, released] - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -# Allow one concurrent deployment -concurrency: - group: "pages" - cancel-in-progress: true - -jobs: - - build-listing: - name: build-listing - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - - uses: actions/checkout@v3 # check out this repo - - uses: actions/checkout@v3 # check out automation repo - with: - repository: vrchat-community/package-list-action - path: ${{env.pathToCi}} - clean: false # otherwise the local repo will no longer be checked out - - - name: Restore Cache - uses: actions/cache@v3 - with: - path: | - ${{env.pathToCi}}/.nuke/temp - ~/.nuget/packages - key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }} - - - name: Build Package Version Listing - run: ${{env.pathToCi}}/build.cmd BuildRepoListing --root ${{env.pathToCi}} --list-publish-directory $GITHUB_WORKSPACE/${{env.listPublishDirectory}} --current-package-name ${{env.CurrentPackageName}} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Setup Pages - uses: actions/configure-pages@v3 - - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - path: ${{env.listPublishDirectory}} - - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v2 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ca2d66..3923992 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.4.3] - 03-28-24 + +- Min CommonTXL version 1.5.0 +- Added DependentSource prefab and GameObject menu option +- Added event logging option to Video Manager +- Changed event logging behavior in SyncPlayer, AudioManager, ScreenManager + ## [2.4.2] - 03-27-24 - Added DependentSource component for linking a Local Video Player to another video player diff --git a/Packages/com.texelsaur.video/Editor/Inspectors/AudioManagerInspector.cs b/Packages/com.texelsaur.video/Editor/Inspectors/AudioManagerInspector.cs index 9fae945..2d42be0 100644 --- a/Packages/com.texelsaur.video/Editor/Inspectors/AudioManagerInspector.cs +++ b/Packages/com.texelsaur.video/Editor/Inspectors/AudioManagerInspector.cs @@ -57,7 +57,7 @@ public class AudioManagerInspector : Editor UdonBehaviour audioLinkCache; UdonBehaviour vrslAudioDmxRuntimeCache; - bool expandDebug = false; + static bool expandDebug = false; int groupCount = 0; int avproAudiolinkCount = 0; diff --git a/Packages/com.texelsaur.video/Editor/Inspectors/Component/VideoManagerInspector.cs b/Packages/com.texelsaur.video/Editor/Inspectors/Component/VideoManagerInspector.cs index dcbfad6..40b924b 100644 --- a/Packages/com.texelsaur.video/Editor/Inspectors/Component/VideoManagerInspector.cs +++ b/Packages/com.texelsaur.video/Editor/Inspectors/Component/VideoManagerInspector.cs @@ -19,10 +19,13 @@ public class VideoManagerInspector : Editor SerializedProperty debugLogProperty; SerializedProperty debugStateProperty; SerializedProperty debugLoggingProperty; + SerializedProperty eventLoggingProperty; DateTime lastValidate; bool audioValid = true; + static bool expandDebug = false; + private void OnEnable() { videoPlayerProperty = serializedObject.FindProperty(nameof(VideoManager.videoPlayer)); @@ -32,6 +35,7 @@ private void OnEnable() debugLogProperty = serializedObject.FindProperty(nameof(VideoManager.debugLog)); debugStateProperty = serializedObject.FindProperty(nameof(VideoManager.debugState)); debugLoggingProperty = serializedObject.FindProperty(nameof(VideoManager.debugLogging)); + eventLoggingProperty = serializedObject.FindProperty(nameof(VideoManager.eventLogging)); Revalidate(); } @@ -48,6 +52,9 @@ public override void OnInspectorGUI() if (UdonSharpGUI.DrawDefaultUdonSharpBehaviourHeader(target)) return; + GUIStyle boldFoldoutStyle = new GUIStyle(EditorStyles.foldout); + boldFoldoutStyle.fontStyle = FontStyle.Bold; + VideoManager videoManager = (VideoManager)serializedObject.targetObject; TXLVideoPlayer videoPlayer = (TXLVideoPlayer)videoPlayerProperty.objectReferenceValue; @@ -84,14 +91,6 @@ public override void OnInspectorGUI() EditorGUI.indentLevel--; } - //EditorGUILayout.Space(); - //EditorGUILayout.PropertyField(sourcesProperty, new GUIContent("Sources", "The list of available video sources.")); - - //List unitySources = VideoComponentUpdater.GetVideoSources(videoManager, VideoSource.VIDEO_SOURCE_UNITY); - //List avproSources = VideoComponentUpdater.GetVideoSources(videoManager, VideoSource.VIDEO_SOURCE_AVPRO); - //if (unitySources.Count == 0 && avproSources.Count == 0) - // EditorGUILayout.HelpBox("No video sources are defined. Video playback will not work until at least one video source is added. Check documentation linked above for information on adding new video sources, or use another version of the video player prefab that includes sources.", MessageType.Warning); - EditorGUILayout.Space(); EditorGUILayout.LabelField("Audio", EditorStyles.boldLabel); if (!audioValid) @@ -105,10 +104,14 @@ public override void OnInspectorGUI() } EditorGUILayout.Space(); - EditorGUILayout.LabelField("Debug Options", EditorStyles.boldLabel); - EditorGUILayout.PropertyField(debugLogProperty, new GUIContent("Debug Log", "Log debug statements to a world object")); - EditorGUILayout.PropertyField(debugStateProperty, new GUIContent("Debug State", "Track periodically refreshed internal state in a world object")); - EditorGUILayout.PropertyField(debugLoggingProperty, new GUIContent("VRC Logging", "Write out video player events to VRChat log.")); + expandDebug = EditorGUILayout.Foldout(expandDebug, "Debug Options", true, boldFoldoutStyle); + if (expandDebug) + { + EditorGUILayout.PropertyField(debugLogProperty, new GUIContent("Debug Log", "Log debug statements to a world object")); + EditorGUILayout.PropertyField(debugStateProperty, new GUIContent("Debug State", "Track periodically refreshed internal state in a world object")); + EditorGUILayout.PropertyField(eventLoggingProperty, new GUIContent("Include Events", "Include additional event traffic in debug log")); + EditorGUILayout.PropertyField(debugLoggingProperty, new GUIContent("VRC Logging", "Write out video player events to VRChat log.")); + } serializedObject.ApplyModifiedProperties(); } diff --git a/Packages/com.texelsaur.video/Editor/VideoTxlManager.cs b/Packages/com.texelsaur.video/Editor/VideoTxlManager.cs index 64fd39f..5c3a134 100644 --- a/Packages/com.texelsaur.video/Editor/VideoTxlManager.cs +++ b/Packages/com.texelsaur.video/Editor/VideoTxlManager.cs @@ -480,7 +480,21 @@ public static void AddUrlRemapperToScene() MenuUtil.AddPrefabToScene("Packages/com.texelsaur.video/Runtime/Prefabs/Component/URL Remapper.prefab"); } - [MenuItem("GameObject/TXL/VideoTXL/Components/Sync Playback Zone", false, 252)] + [MenuItem("GameObject/TXL/VideoTXL/Components/Dependent Source", false, 252)] + public static void AddDependentSourceToScene() + { + TXLVideoPlayer vp = GetVideoPlayer(); + if (vp) + { + GameObject playlistObj = MenuUtil.AddPrefabToObject("Packages/com.texelsaur.video/Runtime/Prefabs/Component/Dependent Source.prefab", vp.transform); + if (vp is LocalPlayer && ((LocalPlayer)vp).urlRemapper == null) + ((LocalPlayer)vp).dependentSource = playlistObj.GetComponent(); + } + else + MenuUtil.AddPrefabToScene("Packages/com.texelsaur.video/Runtime/Prefabs/Component/Dependent Source.prefab"); + } + + [MenuItem("GameObject/TXL/VideoTXL/Components/Sync Playback Zone", false, 253)] public static void AddSyncPlaybackZoneToScene() { TXLVideoPlayer vp = GetVideoPlayer(); diff --git a/Packages/com.texelsaur.video/Runtime/Prefabs/Component/Dependent Source.prefab b/Packages/com.texelsaur.video/Runtime/Prefabs/Component/Dependent Source.prefab new file mode 100644 index 0000000..f4d890f --- /dev/null +++ b/Packages/com.texelsaur.video/Runtime/Prefabs/Component/Dependent Source.prefab @@ -0,0 +1,86 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2478711627004162155 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 761076600929593106} + - component: {fileID: 5623022530114926960} + - component: {fileID: 173320765820508344} + m_Layer: 0 + m_Name: Dependent Source + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &761076600929593106 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2478711627004162155} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &5623022530114926960 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2478711627004162155} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b4262d22fa178094bbdb426641063f9c, type: 3} + m_Name: + m_EditorClassIdentifier: + serializationData: + SerializedFormat: 2 + SerializedBytes: + ReferencedUnityObjects: [] + SerializedBytesString: + Prefab: {fileID: 0} + PrefabModificationsReferencedUnityObjects: [] + PrefabModifications: [] + SerializationNodes: [] + _udonSharpBackingUdonBehaviour: {fileID: 173320765820508344} + primaryVideoPlayer: {fileID: 0} + primaryUrls: [] + dependentUrls: [] +--- !u!114 &173320765820508344 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2478711627004162155} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 45115577ef41a5b4ca741ed302693907, type: 3} + m_Name: + m_EditorClassIdentifier: + interactTextPlacement: {fileID: 0} + interactText: Use + interactTextGO: {fileID: 0} + proximity: 2 + SynchronizePosition: 0 + AllowCollisionOwnershipTransfer: 0 + Reliable: 0 + _syncMethod: 1 + serializedProgramAsset: {fileID: 11400000, guid: c4da10a2fcbf2ef43a499fcdca12ae50, + type: 2} + programSource: {fileID: 11400000, guid: c616df865137d78498ef7d6d7fb05e54, type: 2} + serializedPublicVariablesBytesString: Ai8AAAAAATIAAABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlAFQAYQBiAGwAZQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AAAAAAAYBAAAAAAAAACcBBAAAAHQAeQBwAGUAAWgAAABTAHkAcwB0AGUAbQAuAEMAbwBsAGwAZQBjAHQAaQBvAG4AcwAuAEcAZQBuAGUAcgBpAGMALgBMAGkAcwB0AGAAMQBbAFsAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4ALgBJAG4AdABlAHIAZgBhAGMAZQBzAC4ASQBVAGQAbwBuAFYAYQByAGkAYQBiAGwAZQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AXQBdACwAIABtAHMAYwBvAHIAbABpAGIAAQEJAAAAVgBhAHIAaQBhAGIAbABlAHMALwEAAAABaAAAAFMAeQBzAHQAZQBtAC4AQwBvAGwAbABlAGMAdABpAG8AbgBzAC4ARwBlAG4AZQByAGkAYwAuAEwAaQBzAHQAYAAxAFsAWwBWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAEkAbgB0AGUAcgBmAGEAYwBlAHMALgBJAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlACwAIABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgBdAF0ALAAgAG0AcwBjAG8AcgBsAGkAYgABAAAABgEAAAAAAAAAAi8CAAAAAUkAAABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlAGAAMQBbAFsAUwB5AHMAdABlAG0ALgBJAG4AdAAzADIALAAgAG0AcwBjAG8AcgBsAGkAYgBdAF0ALAAgAFYAUgBDAC4AVQBkAG8AbgAuAEMAbwBtAG0AbwBuAAIAAAAGAgAAAAAAAAAnAQQAAAB0AHkAcABlAAEXAAAAUwB5AHMAdABlAG0ALgBTAHQAcgBpAG4AZwAsACAAbQBzAGMAbwByAGwAaQBiACcBCgAAAFMAeQBtAGIAbwBsAE4AYQBtAGUAAR8AAABfAF8AXwBVAGQAbwBuAFMAaABhAHIAcABCAGUAaABhAHYAaQBvAHUAcgBWAGUAcgBzAGkAbwBuAF8AXwBfACcBBAAAAHQAeQBwAGUAARYAAABTAHkAcwB0AGUAbQAuAEkAbgB0ADMAMgAsACAAbQBzAGMAbwByAGwAaQBiABcBBQAAAFYAYQBsAHUAZQACAAAABwUHBQcF + publicVariablesUnityEngineObjects: [] + publicVariablesSerializationDataFormat: 0 diff --git a/Packages/com.texelsaur.video/Runtime/Prefabs/Component/Dependent Source.prefab.meta b/Packages/com.texelsaur.video/Runtime/Prefabs/Component/Dependent Source.prefab.meta new file mode 100644 index 0000000..1800c3f --- /dev/null +++ b/Packages/com.texelsaur.video/Runtime/Prefabs/Component/Dependent Source.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7d2a7fce2f1422940987920af70ed9da +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Base/Local Video Player Base.prefab b/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Base/Local Video Player Base.prefab index efb1604..e212fe5 100644 --- a/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Base/Local Video Player Base.prefab +++ b/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Base/Local Video Player Base.prefab @@ -27,12 +27,13 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4198100540747736643} + serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: -2, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 7691900497483551449} - m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!65 &4118504724500151968 BoxCollider: @@ -42,9 +43,17 @@ BoxCollider: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4198100540747736643} m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 m_IsTrigger: 1 + m_ProvidesContacts: 0 m_Enabled: 1 - serializedVersion: 2 + serializedVersion: 3 m_Size: {x: 6.866707, y: 3.956761, z: 5.773137} m_Center: {x: 1.9487438, y: 1.9714153, z: -2.7651496} --- !u!65 &5599005614114250969 @@ -55,9 +64,17 @@ BoxCollider: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4198100540747736643} m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 m_IsTrigger: 1 + m_ProvidesContacts: 0 m_Enabled: 1 - serializedVersion: 2 + serializedVersion: 3 m_Size: {x: 8.9778, y: 4.5355706, z: 9.608168} m_Center: {x: 1.8393488, y: 2.2608202, z: -3.8438482} --- !u!114 &5713258465459525213 @@ -147,12 +164,13 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 8038340036887925780} + serializedVersion: 2 m_LocalRotation: {x: -0, y: -0.70711255, z: -0, w: 0.7071011} m_LocalPosition: {x: -10.081, y: 0.041, z: -32.175003} m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 7691900497483551449} - m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &5869928500393926013 MonoBehaviour: @@ -242,9 +260,11 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 8038340037974609699} + serializedVersion: 2 m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: -19.08, y: -0.0000005223929, z: 2.61} m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 m_Children: - {fileID: 1758019584753716590} - {fileID: 5684113020558545694} @@ -253,7 +273,6 @@ Transform: - {fileID: 2393475149555252722} - {fileID: 4694734237403739020} m_Father: {fileID: 0} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &8127334496668070371 MonoBehaviour: @@ -280,6 +299,7 @@ MonoBehaviour: prefabInitialized: 1 runBuildHooks: 1 urlRemapper: {fileID: 0} + dependentSource: {fileID: 0} debugLog: {fileID: 0} playbackZone: {fileID: 5713258465459525213} triggerZone: {fileID: 5713258465459525213} @@ -324,6 +344,7 @@ PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 7691900497483551449} m_Modifications: - target: {fileID: 1364393985353818717, guid: dcc6d9b985845b242a4ec87852d51c69, @@ -391,6 +412,11 @@ PrefabInstance: propertyPath: videoPlayer value: objectReference: {fileID: 8127334496668070371} + - target: {fileID: 5844781865194377992, guid: dcc6d9b985845b242a4ec87852d51c69, + type: 3} + propertyPath: eventLogging + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5844781865194377992, guid: dcc6d9b985845b242a4ec87852d51c69, type: 3} propertyPath: serializationData.Prefab @@ -398,6 +424,9 @@ PrefabInstance: objectReference: {fileID: 5844781865194377992, guid: dcc6d9b985845b242a4ec87852d51c69, type: 3} m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: dcc6d9b985845b242a4ec87852d51c69, type: 3} --- !u!4 &1758019584753716590 stripped Transform: @@ -410,6 +439,7 @@ PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 7691900497483551449} m_Modifications: - target: {fileID: 1265923996532348511, guid: 36dc07e2ba219cb4095af6fa11c115f7, @@ -494,13 +524,10 @@ PrefabInstance: value: 0 objectReference: {fileID: 0} m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 36dc07e2ba219cb4095af6fa11c115f7, type: 3} ---- !u!4 &5684113020558545694 stripped -Transform: - m_CorrespondingSourceObject: {fileID: 5837753691170007834, guid: 36dc07e2ba219cb4095af6fa11c115f7, - type: 3} - m_PrefabInstance: {fileID: 2297355467816007684} - m_PrefabAsset: {fileID: 0} --- !u!114 &463483733139237712 stripped MonoBehaviour: m_CorrespondingSourceObject: {fileID: 1841769248869241684, guid: 36dc07e2ba219cb4095af6fa11c115f7, @@ -513,11 +540,18 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 199f52e31cfe447408324573bee235f4, type: 3} m_Name: m_EditorClassIdentifier: +--- !u!4 &5684113020558545694 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5837753691170007834, guid: 36dc07e2ba219cb4095af6fa11c115f7, + type: 3} + m_PrefabInstance: {fileID: 2297355467816007684} + m_PrefabAsset: {fileID: 0} --- !u!1001 &6267499536019444835 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 7691900497483551449} m_Modifications: - target: {fileID: 1159214996631221443, guid: 6ac6c4803b19f754598a697148f4c228, @@ -736,6 +770,9 @@ PrefabInstance: objectReference: {fileID: 0} m_RemovedComponents: - {fileID: 3604230520627821591, guid: 6ac6c4803b19f754598a697148f4c228, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 6ac6c4803b19f754598a697148f4c228, type: 3} --- !u!4 &57615843249777438 stripped Transform: @@ -754,6 +791,7 @@ PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 7691900497483551449} m_Modifications: - target: {fileID: 97084582520432982, guid: 73c3857879213ac4fb7e2f785aa20847, @@ -841,6 +879,11 @@ PrefabInstance: propertyPath: m_AnchorMax.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4489219333077517717, guid: 73c3857879213ac4fb7e2f785aa20847, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_TargetAssemblyTypeName + value: VRC.Udon.UdonBehaviour, VRC.Udon + objectReference: {fileID: 0} - target: {fileID: 4489219333593105735, guid: 73c3857879213ac4fb7e2f785aa20847, type: 3} propertyPath: m_AnchorMax.x @@ -994,6 +1037,9 @@ PrefabInstance: objectReference: {fileID: 6084118991308512909, guid: 73c3857879213ac4fb7e2f785aa20847, type: 3} m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 73c3857879213ac4fb7e2f785aa20847, type: 3} --- !u!224 &2393475149555252722 stripped RectTransform: diff --git a/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Base/Sync Video Player Base.prefab b/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Base/Sync Video Player Base.prefab index 1cff07c..e4a7060 100644 --- a/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Base/Sync Video Player Base.prefab +++ b/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Base/Sync Video Player Base.prefab @@ -25,12 +25,13 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4267576062706341697} + serializedVersion: 2 m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 8317873238966784463} - m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &884831845447775503 MonoBehaviour: @@ -120,9 +121,11 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 8317873238966784462} + serializedVersion: 2 m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 m_Children: - {fileID: 7778109764968911013} - {fileID: 6179655403011195173} @@ -131,7 +134,6 @@ Transform: - {fileID: 5176264752326645704} - {fileID: 2423388977332971206} m_Father: {fileID: 0} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &4325532563776460764 MonoBehaviour: @@ -214,6 +216,7 @@ PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 8317873238966784463} m_Modifications: - target: {fileID: 1265923996532348511, guid: 36dc07e2ba219cb4095af6fa11c115f7, @@ -408,13 +411,10 @@ PrefabInstance: value: 0 objectReference: {fileID: 0} m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 36dc07e2ba219cb4095af6fa11c115f7, type: 3} ---- !u!4 &6179655403011195173 stripped -Transform: - m_CorrespondingSourceObject: {fileID: 5837753691170007834, guid: 36dc07e2ba219cb4095af6fa11c115f7, - type: 3} - m_PrefabInstance: {fileID: 342649417333451327} - m_PrefabAsset: {fileID: 0} --- !u!114 &2111645666977610091 stripped MonoBehaviour: m_CorrespondingSourceObject: {fileID: 1841769248869241684, guid: 36dc07e2ba219cb4095af6fa11c115f7, @@ -427,11 +427,18 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 199f52e31cfe447408324573bee235f4, type: 3} m_Name: m_EditorClassIdentifier: +--- !u!4 &6179655403011195173 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5837753691170007834, guid: 36dc07e2ba219cb4095af6fa11c115f7, + type: 3} + m_PrefabInstance: {fileID: 342649417333451327} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1627993770547820775 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 8317873238966784463} m_Modifications: - target: {fileID: 1159332922847119732, guid: 6ac6c4803b19f754598a697148f4c228, @@ -661,24 +668,28 @@ PrefabInstance: objectReference: {fileID: 0} m_RemovedComponents: - {fileID: 3604230520627821591, guid: 6ac6c4803b19f754598a697148f4c228, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 6ac6c4803b19f754598a697148f4c228, type: 3} ---- !u!4 &4657244728226875290 stripped -Transform: - m_CorrespondingSourceObject: {fileID: 6212171233556643709, guid: 6ac6c4803b19f754598a697148f4c228, - type: 3} - m_PrefabInstance: {fileID: 1627993770547820775} - m_PrefabAsset: {fileID: 0} --- !u!23 &3970495419184861440 stripped MeshRenderer: m_CorrespondingSourceObject: {fileID: 2417803226240346599, guid: 6ac6c4803b19f754598a697148f4c228, type: 3} m_PrefabInstance: {fileID: 1627993770547820775} m_PrefabAsset: {fileID: 0} +--- !u!4 &4657244728226875290 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6212171233556643709, guid: 6ac6c4803b19f754598a697148f4c228, + type: 3} + m_PrefabInstance: {fileID: 1627993770547820775} + m_PrefabAsset: {fileID: 0} --- !u!1001 &7535398636267491331 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 8317873238966784463} m_Modifications: - target: {fileID: 97084582520432982, guid: 73c3857879213ac4fb7e2f785aa20847, @@ -766,6 +777,11 @@ PrefabInstance: propertyPath: m_AnchorMax.y value: 1 objectReference: {fileID: 0} + - target: {fileID: 4489219333077517717, guid: 73c3857879213ac4fb7e2f785aa20847, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_TargetAssemblyTypeName + value: VRC.Udon.UdonBehaviour, VRC.Udon + objectReference: {fileID: 0} - target: {fileID: 4489219333593105735, guid: 73c3857879213ac4fb7e2f785aa20847, type: 3} propertyPath: m_AnchorMax.x @@ -934,6 +950,9 @@ PrefabInstance: objectReference: {fileID: 6084118991308512909, guid: 73c3857879213ac4fb7e2f785aa20847, type: 3} m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 73c3857879213ac4fb7e2f785aa20847, type: 3} --- !u!224 &2423388977332971206 stripped RectTransform: @@ -946,6 +965,7 @@ PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 8317873238966784463} m_Modifications: - target: {fileID: 1591208308713512640, guid: 490c75a360ffcb144a8e12d31dbb7177, @@ -1268,13 +1288,10 @@ PrefabInstance: objectReference: {fileID: 8731612731824922734, guid: 490c75a360ffcb144a8e12d31dbb7177, type: 3} m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 490c75a360ffcb144a8e12d31dbb7177, type: 3} ---- !u!4 &5176264752326645704 stripped -Transform: - m_CorrespondingSourceObject: {fileID: 3646378148512303156, guid: 490c75a360ffcb144a8e12d31dbb7177, - type: 3} - m_PrefabInstance: {fileID: 8453046241844830204} - m_PrefabAsset: {fileID: 0} --- !u!114 &2567378703538118181 stripped MonoBehaviour: m_CorrespondingSourceObject: {fileID: 6264060204809601497, guid: 490c75a360ffcb144a8e12d31dbb7177, @@ -1287,11 +1304,18 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: +--- !u!4 &5176264752326645704 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3646378148512303156, guid: 490c75a360ffcb144a8e12d31dbb7177, + type: 3} + m_PrefabInstance: {fileID: 8453046241844830204} + m_PrefabAsset: {fileID: 0} --- !u!1001 &8727457689019986680 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 8317873238966784463} m_Modifications: - target: {fileID: 1364393985353818717, guid: dcc6d9b985845b242a4ec87852d51c69, @@ -1359,6 +1383,11 @@ PrefabInstance: propertyPath: videoPlayer value: objectReference: {fileID: 4325532563776460764} + - target: {fileID: 5844781865194377992, guid: dcc6d9b985845b242a4ec87852d51c69, + type: 3} + propertyPath: eventLogging + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5844781865194377992, guid: dcc6d9b985845b242a4ec87852d51c69, type: 3} propertyPath: serializationData.Prefab @@ -1366,6 +1395,9 @@ PrefabInstance: objectReference: {fileID: 5844781865194377992, guid: dcc6d9b985845b242a4ec87852d51c69, type: 3} m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: dcc6d9b985845b242a4ec87852d51c69, type: 3} --- !u!4 &7778109764968911013 stripped Transform: diff --git a/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Local Video Player Unity.prefab b/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Local Video Player Unity.prefab index bb356d2..d15b909 100644 --- a/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Local Video Player Unity.prefab +++ b/Packages/com.texelsaur.video/Runtime/Prefabs/Other Video Players/Local Video Player Unity.prefab @@ -5,6 +5,7 @@ PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 3251885611921768493} m_Modifications: - target: {fileID: 2831270152470892240, guid: 4f56f58d52c02b94d87594302c93f0e9, @@ -92,7 +93,16 @@ PrefabInstance: objectReference: {fileID: 7187779247886805901, guid: 4f56f58d52c02b94d87594302c93f0e9, type: 3} m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 4f56f58d52c02b94d87594302c93f0e9, type: 3} +--- !u!4 &5733613366365729813 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7187779247395199962, guid: 4f56f58d52c02b94d87594302c93f0e9, + type: 3} + m_PrefabInstance: {fileID: 3193612740996591567} + m_PrefabAsset: {fileID: 0} --- !u!114 &5733613366365729815 stripped MonoBehaviour: m_CorrespondingSourceObject: {fileID: 7187779247395199960, guid: 4f56f58d52c02b94d87594302c93f0e9, @@ -110,6 +120,7 @@ PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 8910019393177607773} m_Modifications: - target: {fileID: 4398020705770390108, guid: ba87269befcf7af488a09c2216882a58, @@ -179,7 +190,16 @@ PrefabInstance: value: Unity1080 objectReference: {fileID: 0} m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: ba87269befcf7af488a09c2216882a58, type: 3} +--- !u!4 &1077184091310548925 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4398020705770390108, guid: ba87269befcf7af488a09c2216882a58, + type: 3} + m_PrefabInstance: {fileID: 3745312357640152545} + m_PrefabAsset: {fileID: 0} --- !u!114 &7779092302979751503 stripped MonoBehaviour: m_CorrespondingSourceObject: {fileID: 6345262384320412590, guid: ba87269befcf7af488a09c2216882a58, @@ -197,6 +217,7 @@ PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: + serializedVersion: 3 m_TransformParent: {fileID: 0} m_Modifications: - target: {fileID: 463483733139237712, guid: 7aab308286408954ba4f1b73e8d35b10, @@ -269,11 +290,6 @@ PrefabInstance: propertyPath: m_AnchorMax.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 6599504381875534907, guid: 7aab308286408954ba4f1b73e8d35b10, - type: 3} - propertyPath: debugLogging - value: 1 - objectReference: {fileID: 0} - target: {fileID: 6599504381875534907, guid: 7aab308286408954ba4f1b73e8d35b10, type: 3} propertyPath: sources.Array.size @@ -378,16 +394,27 @@ PrefabInstance: value: 0 objectReference: {fileID: 0} m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 1758019584753716590, guid: 7aab308286408954ba4f1b73e8d35b10, + type: 3} + insertIndex: -1 + addedObject: {fileID: 1077184091310548925} + - targetCorrespondingSourceObject: {fileID: 5684113020558545694, guid: 7aab308286408954ba4f1b73e8d35b10, + type: 3} + insertIndex: -1 + addedObject: {fileID: 5733613366365729813} + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 7aab308286408954ba4f1b73e8d35b10, type: 3} ---- !u!4 &8910019393177607773 stripped +--- !u!4 &3251885611921768493 stripped Transform: - m_CorrespondingSourceObject: {fileID: 1758019584753716590, guid: 7aab308286408954ba4f1b73e8d35b10, + m_CorrespondingSourceObject: {fileID: 5684113020558545694, guid: 7aab308286408954ba4f1b73e8d35b10, type: 3} m_PrefabInstance: {fileID: 7188591703079359283} m_PrefabAsset: {fileID: 0} ---- !u!4 &3251885611921768493 stripped +--- !u!4 &8910019393177607773 stripped Transform: - m_CorrespondingSourceObject: {fileID: 5684113020558545694, guid: 7aab308286408954ba4f1b73e8d35b10, + m_CorrespondingSourceObject: {fileID: 1758019584753716590, guid: 7aab308286408954ba4f1b73e8d35b10, type: 3} m_PrefabInstance: {fileID: 7188591703079359283} m_PrefabAsset: {fileID: 0} diff --git a/Packages/com.texelsaur.video/Runtime/Prefabs/UI/Options Panel.prefab b/Packages/com.texelsaur.video/Runtime/Prefabs/UI/Options Panel.prefab index 79e289f..7a530b1 100644 --- a/Packages/com.texelsaur.video/Runtime/Prefabs/UI/Options Panel.prefab +++ b/Packages/com.texelsaur.video/Runtime/Prefabs/UI/Options Panel.prefab @@ -5482,7 +5482,7 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: VideoTXL 2.4.2 + m_Text: VideoTXL 2.4.3 --- !u!1 &4893902363205926727 GameObject: m_ObjectHideFlags: 0 diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/ACL/VideoLockAclHandler.asset b/Packages/com.texelsaur.video/Runtime/Scripts/ACL/VideoLockAclHandler.asset index fa60787..8cca09b 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/ACL/VideoLockAclHandler.asset +++ b/Packages/com.texelsaur.video/Runtime/Scripts/ACL/VideoLockAclHandler.asset @@ -44,7 +44,7 @@ MonoBehaviour: Data: - Name: Entry: 12 - Data: 12 + Data: 13 - Name: Entry: 7 Data: @@ -470,10 +470,70 @@ MonoBehaviour: Data: - Name: $k Entry: 1 - Data: k__BackingField + Data: eventDebugLog - Name: $v Entry: 7 Data: 24|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + - Name: k__BackingField + Entry: 1 + Data: eventDebugLog + - Name: k__BackingField + Entry: 7 + Data: 25|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: Texel.DebugLog, com.texelsaur.common + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: 26|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: VRC.Udon.UdonBehaviour, VRC.Udon + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib + - Name: + Entry: 6 + Data: + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 5 + Data: false + - Name: _fieldAttributes + Entry: 7 + Data: 27|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + - Name: + Entry: 12 + Data: 0 + - Name: + Entry: 13 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 7 + Data: + - Name: $k + Entry: 1 + Data: k__BackingField + - Name: $v + Entry: 7 + Data: 28|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -497,7 +557,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 25|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -521,13 +581,13 @@ MonoBehaviour: Data: videoPlayer - Name: $v Entry: 7 - Data: 26|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: videoPlayer - Name: k__BackingField Entry: 7 - Data: 27|System.RuntimeType, mscorlib + Data: 31|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.SyncPlayer, com.texelsaur.video @@ -535,14 +595,8 @@ MonoBehaviour: Entry: 8 Data: - Name: k__BackingField - Entry: 7 - Data: 28|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: VRC.Udon.UdonBehaviour, VRC.Udon - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -557,7 +611,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -581,13 +635,13 @@ MonoBehaviour: Data: playerArg - Name: $v Entry: 7 - Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 33|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playerArg - Name: k__BackingField Entry: 7 - Data: 31|System.RuntimeType, mscorlib + Data: 34|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDKBase.VRCPlayerApi, VRCSDKBase @@ -596,7 +650,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 31 + Data: 34 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -611,13 +665,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 35|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 33|System.NonSerializedAttribute, mscorlib + Data: 36|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -641,7 +695,7 @@ MonoBehaviour: Data: checkResult - Name: $v Entry: 7 - Data: 34|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 37|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: checkResult @@ -665,13 +719,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 35|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 38|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 36|System.NonSerializedAttribute, mscorlib + Data: 39|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioChannel.asset b/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioChannel.asset index 9ff31e4..a4605c2 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioChannel.asset +++ b/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioChannel.asset @@ -44,7 +44,7 @@ MonoBehaviour: Data: - Name: Entry: 12 - Data: 25 + Data: 26 - Name: Entry: 7 Data: @@ -470,10 +470,70 @@ MonoBehaviour: Data: - Name: $k Entry: 1 - Data: k__BackingField + Data: eventDebugLog - Name: $v Entry: 7 Data: 24|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + - Name: k__BackingField + Entry: 1 + Data: eventDebugLog + - Name: k__BackingField + Entry: 7 + Data: 25|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: Texel.DebugLog, com.texelsaur.common + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: 26|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: VRC.Udon.UdonBehaviour, VRC.Udon + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib + - Name: + Entry: 6 + Data: + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 5 + Data: false + - Name: _fieldAttributes + Entry: 7 + Data: 27|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + - Name: + Entry: 12 + Data: 0 + - Name: + Entry: 13 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 7 + Data: + - Name: $k + Entry: 1 + Data: k__BackingField + - Name: $v + Entry: 7 + Data: 28|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -497,7 +557,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 25|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -521,13 +581,13 @@ MonoBehaviour: Data: channelName - Name: $v Entry: 7 - Data: 26|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: channelName - Name: k__BackingField Entry: 7 - Data: 27|System.RuntimeType, mscorlib + Data: 31|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.String, mscorlib @@ -536,7 +596,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 27 + Data: 31 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -551,13 +611,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 28|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 29|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 33|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The name of the channel. Must be unique across all channels in the same @@ -585,13 +645,13 @@ MonoBehaviour: Data: volume - Name: $v Entry: 7 - Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 34|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: volume - Name: k__BackingField Entry: 7 - Data: 31|System.RuntimeType, mscorlib + Data: 35|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Single, mscorlib @@ -600,7 +660,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 31 + Data: 35 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -615,13 +675,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 36|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 33|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 37|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The base volume level of this channel. May be scaled back by mster volume @@ -631,7 +691,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 34|UnityEngine.RangeAttribute, UnityEngine.CoreModule + Data: 38|UnityEngine.RangeAttribute, UnityEngine.CoreModule - Name: min Entry: 4 Data: 0 @@ -661,7 +721,7 @@ MonoBehaviour: Data: lockVolume - Name: $v Entry: 7 - Data: 35|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 39|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: lockVolume @@ -685,13 +745,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 36|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 40|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 37|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 41|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Keeps volume locked to the value above, ignoring master volume, fade, @@ -719,7 +779,7 @@ MonoBehaviour: Data: lockMute - Name: $v Entry: 7 - Data: 38|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 42|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: lockMute @@ -743,13 +803,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 39|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 43|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 40|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 44|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Preserves channel's mute state, ignoring master mute. @@ -776,7 +836,7 @@ MonoBehaviour: Data: mute - Name: $v Entry: 7 - Data: 41|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 45|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: mute @@ -800,13 +860,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 42|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 46|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 43|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 47|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Whether this channel should be muted by default. @@ -833,13 +893,13 @@ MonoBehaviour: Data: fadeZone - Name: $v Entry: 7 - Data: 44|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 48|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: fadeZone - Name: k__BackingField Entry: 7 - Data: 45|System.RuntimeType, mscorlib + Data: 49|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.AudioFadeZone, com.texelsaur.video @@ -847,14 +907,8 @@ MonoBehaviour: Entry: 8 Data: - Name: k__BackingField - Entry: 7 - Data: 46|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: VRC.Udon.UdonBehaviour, VRC.Udon - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -869,13 +923,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 47|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 50|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 48|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 51|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: An optional fade zone to dynamically scale volume based on position/distance. @@ -902,13 +956,13 @@ MonoBehaviour: Data: track - Name: $v Entry: 7 - Data: 49|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 52|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: track - Name: k__BackingField Entry: 7 - Data: 50|System.RuntimeType, mscorlib + Data: 53|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.AudioChannelTrack, com.texelsaur.video @@ -932,13 +986,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 51|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 54|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 52|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 55|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: 'AVPro: which audio track to output on the audio source.' @@ -965,7 +1019,7 @@ MonoBehaviour: Data: audioLinkSource - Name: $v Entry: 7 - Data: 53|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 56|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioLinkSource @@ -989,13 +1043,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 54|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 57|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 55|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 58|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Whether this channel should be used as the AudioLink source. If no channel @@ -1023,7 +1077,7 @@ MonoBehaviour: Data: vrslAudioDMXSource - Name: $v Entry: 7 - Data: 56|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 59|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: vrslAudioDMXSource @@ -1047,13 +1101,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 57|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 60|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 58|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 61|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Whether this channel should be used as the VRSL Audio DMX source. If @@ -1081,13 +1135,13 @@ MonoBehaviour: Data: audioSourceTemplate - Name: $v Entry: 7 - Data: 59|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 62|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioSourceTemplate - Name: k__BackingField Entry: 7 - Data: 60|System.RuntimeType, mscorlib + Data: 63|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.AudioSource, UnityEngine.AudioModule @@ -1096,7 +1150,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 60 + Data: 63 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1111,13 +1165,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 61|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 64|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 62|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 65|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: An audio source that serves as a reference for copying settings to the @@ -1145,16 +1199,16 @@ MonoBehaviour: Data: fade - Name: $v Entry: 7 - Data: 63|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 66|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: fade - Name: k__BackingField Entry: 9 - Data: 31 + Data: 35 - Name: k__BackingField Entry: 9 - Data: 31 + Data: 35 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1169,13 +1223,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 64|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 67|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 65|UnityEngine.HideInInspector, UnityEngine.CoreModule + Data: 68|UnityEngine.HideInInspector, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1199,7 +1253,7 @@ MonoBehaviour: Data: active - Name: $v Entry: 7 - Data: 66|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 69|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: active @@ -1223,7 +1277,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 67|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 70|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1247,16 +1301,16 @@ MonoBehaviour: Data: spatialBlend - Name: $v Entry: 7 - Data: 68|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 71|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: spatialBlend - Name: k__BackingField Entry: 9 - Data: 31 + Data: 35 - Name: k__BackingField Entry: 9 - Data: 31 + Data: 35 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1271,7 +1325,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 69|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 72|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1295,13 +1349,13 @@ MonoBehaviour: Data: spatialCurve - Name: $v Entry: 7 - Data: 70|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 73|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: spatialCurve - Name: k__BackingField Entry: 7 - Data: 71|System.RuntimeType, mscorlib + Data: 74|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.AnimationCurve, UnityEngine.CoreModule @@ -1310,7 +1364,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 71 + Data: 74 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1325,7 +1379,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 72|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 75|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1349,13 +1403,13 @@ MonoBehaviour: Data: manager - Name: $v Entry: 7 - Data: 73|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 76|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: manager - Name: k__BackingField Entry: 7 - Data: 74|System.RuntimeType, mscorlib + Data: 77|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.AudioManager, com.texelsaur.video @@ -1364,7 +1418,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 46 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1379,7 +1433,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 75|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 78|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1403,16 +1457,16 @@ MonoBehaviour: Data: boundSource - Name: $v Entry: 7 - Data: 76|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 79|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: boundSource - Name: k__BackingField Entry: 9 - Data: 60 + Data: 63 - Name: k__BackingField Entry: 9 - Data: 60 + Data: 63 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1427,7 +1481,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 77|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 80|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioFadeZone.asset b/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioFadeZone.asset index b06a2b3..b0b97a1 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioFadeZone.asset +++ b/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioFadeZone.asset @@ -44,7 +44,7 @@ MonoBehaviour: Data: - Name: Entry: 12 - Data: 32 + Data: 33 - Name: Entry: 7 Data: @@ -470,10 +470,70 @@ MonoBehaviour: Data: - Name: $k Entry: 1 - Data: k__BackingField + Data: eventDebugLog - Name: $v Entry: 7 Data: 24|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + - Name: k__BackingField + Entry: 1 + Data: eventDebugLog + - Name: k__BackingField + Entry: 7 + Data: 25|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: Texel.DebugLog, com.texelsaur.common + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: 26|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: VRC.Udon.UdonBehaviour, VRC.Udon + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib + - Name: + Entry: 6 + Data: + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 5 + Data: false + - Name: _fieldAttributes + Entry: 7 + Data: 27|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + - Name: + Entry: 12 + Data: 0 + - Name: + Entry: 13 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 7 + Data: + - Name: $k + Entry: 1 + Data: k__BackingField + - Name: $v + Entry: 7 + Data: 28|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -497,7 +557,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 25|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -521,13 +581,13 @@ MonoBehaviour: Data: audioSource - Name: $v Entry: 7 - Data: 26|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioSource - Name: k__BackingField Entry: 7 - Data: 27|System.RuntimeType, mscorlib + Data: 31|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.AudioSource, UnityEngine.AudioModule @@ -536,7 +596,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 27 + Data: 31 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -551,13 +611,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 28|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 29|UnityEngine.HeaderAttribute, UnityEngine.CoreModule + Data: 33|UnityEngine.HeaderAttribute, UnityEngine.CoreModule - Name: header Entry: 1 Data: Optional Components @@ -566,7 +626,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 30|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 34|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: An audio source to update directly. Does not need to be specified if @@ -594,13 +654,13 @@ MonoBehaviour: Data: innerZone - Name: $v Entry: 7 - Data: 31|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 35|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: innerZone - Name: k__BackingField Entry: 7 - Data: 32|System.RuntimeType, mscorlib + Data: 36|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.Collider, UnityEngine.PhysicsModule @@ -609,7 +669,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 32 + Data: 36 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -624,13 +684,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 33|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 37|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 34|UnityEngine.HeaderAttribute, UnityEngine.CoreModule + Data: 38|UnityEngine.HeaderAttribute, UnityEngine.CoreModule - Name: header Entry: 1 Data: Configuration @@ -639,7 +699,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 35|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 39|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: An inner trigger collider, within which volume is set to the upper bound @@ -666,16 +726,16 @@ MonoBehaviour: Data: outerZone - Name: $v Entry: 7 - Data: 36|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 40|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: outerZone - Name: k__BackingField Entry: 9 - Data: 32 + Data: 36 - Name: k__BackingField Entry: 9 - Data: 32 + Data: 36 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -690,13 +750,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 37|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 41|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 38|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 42|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: An outer trigger collider, beyond which volume is set to the lower bound @@ -723,13 +783,13 @@ MonoBehaviour: Data: upperBound - Name: $v Entry: 7 - Data: 39|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 43|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: upperBound - Name: k__BackingField Entry: 7 - Data: 40|System.RuntimeType, mscorlib + Data: 44|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Single, mscorlib @@ -738,7 +798,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 40 + Data: 44 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -753,13 +813,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 41|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 45|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 42|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 46|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The volume level within the inner zone @@ -768,7 +828,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 43|UnityEngine.RangeAttribute, UnityEngine.CoreModule + Data: 47|UnityEngine.RangeAttribute, UnityEngine.CoreModule - Name: min Entry: 4 Data: 0 @@ -798,16 +858,16 @@ MonoBehaviour: Data: lowerBound - Name: $v Entry: 7 - Data: 44|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 48|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: lowerBound - Name: k__BackingField Entry: 9 - Data: 40 + Data: 44 - Name: k__BackingField Entry: 9 - Data: 40 + Data: 44 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -822,13 +882,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 45|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 49|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 46|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 50|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The volume level outside the outer zone @@ -837,7 +897,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 47|UnityEngine.RangeAttribute, UnityEngine.CoreModule + Data: 51|UnityEngine.RangeAttribute, UnityEngine.CoreModule - Name: min Entry: 4 Data: 0 @@ -867,16 +927,16 @@ MonoBehaviour: Data: fadeDelay - Name: $v Entry: 7 - Data: 48|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 52|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: fadeDelay - Name: k__BackingField Entry: 9 - Data: 40 + Data: 44 - Name: k__BackingField Entry: 9 - Data: 40 + Data: 44 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -891,13 +951,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 49|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 53|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 50|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 54|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Volume approaches its target value at a linear rate determined by the @@ -925,7 +985,7 @@ MonoBehaviour: Data: active - Name: $v Entry: 7 - Data: 51|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 55|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: active @@ -949,13 +1009,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 52|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 56|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 53|UnityEngine.HeaderAttribute, UnityEngine.CoreModule + Data: 57|UnityEngine.HeaderAttribute, UnityEngine.CoreModule - Name: header Entry: 1 Data: Performance @@ -964,7 +1024,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 54|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 58|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Whether the fade zone is active by default @@ -991,16 +1051,16 @@ MonoBehaviour: Data: updateRate - Name: $v Entry: 7 - Data: 55|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 59|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: updateRate - Name: k__BackingField Entry: 9 - Data: 40 + Data: 44 - Name: k__BackingField Entry: 9 - Data: 40 + Data: 44 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1015,13 +1075,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 56|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 60|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 57|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 61|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Interval in seconds that player position is checked for correct fade @@ -1049,7 +1109,7 @@ MonoBehaviour: Data: forceColliderCheck - Name: $v Entry: 7 - Data: 58|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 62|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: forceColliderCheck @@ -1073,13 +1133,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 59|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 63|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 60|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 64|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Force re-checking zone membership on player enter events. May be needed @@ -1109,13 +1169,13 @@ MonoBehaviour: Data: audioSourceLocations - Name: $v Entry: 7 - Data: 61|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 65|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioSourceLocations - Name: k__BackingField Entry: 7 - Data: 62|System.RuntimeType, mscorlib + Data: 66|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.Transform[], UnityEngine.CoreModule @@ -1124,7 +1184,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 62 + Data: 66 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1139,13 +1199,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 63|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 67|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 64|UnityEngine.HeaderAttribute, UnityEngine.CoreModule + Data: 68|UnityEngine.HeaderAttribute, UnityEngine.CoreModule - Name: header Entry: 1 Data: Experimental @@ -1172,13 +1232,13 @@ MonoBehaviour: Data: innerRadius - Name: $v Entry: 7 - Data: 65|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 69|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: innerRadius - Name: k__BackingField Entry: 7 - Data: 66|System.RuntimeType, mscorlib + Data: 70|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Single[], mscorlib @@ -1187,7 +1247,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 66 + Data: 70 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1202,7 +1262,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 67|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 71|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1226,16 +1286,16 @@ MonoBehaviour: Data: outerRadius - Name: $v Entry: 7 - Data: 68|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 72|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: outerRadius - Name: k__BackingField Entry: 9 - Data: 66 + Data: 70 - Name: k__BackingField Entry: 9 - Data: 66 + Data: 70 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1250,7 +1310,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 69|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 73|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1274,28 +1334,16 @@ MonoBehaviour: Data: debugLog - Name: $v Entry: 7 - Data: 70|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 74|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugLog - Name: k__BackingField - Entry: 7 - Data: 71|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: Texel.DebugLog, com.texelsaur.common - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 25 - Name: k__BackingField - Entry: 7 - Data: 72|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: VRC.Udon.UdonBehaviour, VRC.Udon - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1310,13 +1358,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 73|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 75|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 74|UnityEngine.HeaderAttribute, UnityEngine.CoreModule + Data: 76|UnityEngine.HeaderAttribute, UnityEngine.CoreModule - Name: header Entry: 1 Data: Debug @@ -1325,7 +1373,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 75|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 77|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Log debug statements to a world object @@ -1352,7 +1400,7 @@ MonoBehaviour: Data: vrcLog - Name: $v Entry: 7 - Data: 76|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 78|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: vrcLog @@ -1376,13 +1424,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 77|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 79|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 78|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 80|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Write debug statements to VRChat log @@ -1409,7 +1457,7 @@ MonoBehaviour: Data: legacyCollider - Name: $v Entry: 7 - Data: 79|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 81|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: legacyCollider @@ -1433,7 +1481,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 80|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 82|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1457,7 +1505,7 @@ MonoBehaviour: Data: hasAudioSource - Name: $v Entry: 7 - Data: 81|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 83|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: hasAudioSource @@ -1481,7 +1529,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 82|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 84|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1505,7 +1553,7 @@ MonoBehaviour: Data: forceRecalc - Name: $v Entry: 7 - Data: 83|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 85|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: forceRecalc @@ -1529,7 +1577,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 84|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 86|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1553,7 +1601,7 @@ MonoBehaviour: Data: pendingRecalc - Name: $v Entry: 7 - Data: 85|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 87|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: pendingRecalc @@ -1577,7 +1625,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 86|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 88|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1601,7 +1649,7 @@ MonoBehaviour: Data: triggerCount - Name: $v Entry: 7 - Data: 87|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 89|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: triggerCount @@ -1625,7 +1673,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 88|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 90|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1649,16 +1697,16 @@ MonoBehaviour: Data: targetVolume - Name: $v Entry: 7 - Data: 89|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 91|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: targetVolume - Name: k__BackingField Entry: 9 - Data: 40 + Data: 44 - Name: k__BackingField Entry: 9 - Data: 40 + Data: 44 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1673,7 +1721,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 90|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 92|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1697,16 +1745,16 @@ MonoBehaviour: Data: currentVolume - Name: $v Entry: 7 - Data: 91|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 93|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: currentVolume - Name: k__BackingField Entry: 9 - Data: 40 + Data: 44 - Name: k__BackingField Entry: 9 - Data: 40 + Data: 44 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1721,7 +1769,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 92|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 94|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1745,7 +1793,7 @@ MonoBehaviour: Data: fadeInit - Name: $v Entry: 7 - Data: 93|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 95|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: fadeInit @@ -1769,7 +1817,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 94|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 96|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1793,7 +1841,7 @@ MonoBehaviour: Data: fadeScheduled - Name: $v Entry: 7 - Data: 95|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 97|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: fadeScheduled @@ -1817,7 +1865,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 96|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 98|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioManager.asset b/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioManager.asset index 6f145a3..64e4698 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioManager.asset +++ b/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioManager.asset @@ -44,7 +44,7 @@ MonoBehaviour: Data: - Name: Entry: 12 - Data: 32 + Data: 33 - Name: Entry: 7 Data: @@ -470,10 +470,70 @@ MonoBehaviour: Data: - Name: $k Entry: 1 - Data: k__BackingField + Data: eventDebugLog - Name: $v Entry: 7 Data: 24|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + - Name: k__BackingField + Entry: 1 + Data: eventDebugLog + - Name: k__BackingField + Entry: 7 + Data: 25|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: Texel.DebugLog, com.texelsaur.common + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: 26|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: VRC.Udon.UdonBehaviour, VRC.Udon + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib + - Name: + Entry: 6 + Data: + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 5 + Data: false + - Name: _fieldAttributes + Entry: 7 + Data: 27|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + - Name: + Entry: 12 + Data: 0 + - Name: + Entry: 13 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 7 + Data: + - Name: $k + Entry: 1 + Data: k__BackingField + - Name: $v + Entry: 7 + Data: 28|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -497,7 +557,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 25|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -521,13 +581,13 @@ MonoBehaviour: Data: videoPlayer - Name: $v Entry: 7 - Data: 26|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: videoPlayer - Name: k__BackingField Entry: 7 - Data: 27|System.RuntimeType, mscorlib + Data: 31|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.TXLVideoPlayer, com.texelsaur.video @@ -535,14 +595,8 @@ MonoBehaviour: Entry: 8 Data: - Name: k__BackingField - Entry: 7 - Data: 28|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: VRC.Udon.UdonBehaviour, VRC.Udon - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -557,7 +611,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -581,7 +635,7 @@ MonoBehaviour: Data: muteSourceForInactiveVideo - Name: $v Entry: 7 - Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 33|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: muteSourceForInactiveVideo @@ -605,7 +659,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 31|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 34|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -629,16 +683,16 @@ MonoBehaviour: Data: audioLinkSystem - Name: $v Entry: 7 - Data: 32|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 35|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioLinkSystem - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -653,7 +707,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 33|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 36|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -677,16 +731,16 @@ MonoBehaviour: Data: vrslAudioDMXRuntime - Name: $v Entry: 7 - Data: 34|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 37|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: vrslAudioDMXRuntime - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -701,7 +755,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 35|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 38|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -725,13 +779,13 @@ MonoBehaviour: Data: inputVolume - Name: $v Entry: 7 - Data: 36|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 39|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: inputVolume - Name: k__BackingField Entry: 7 - Data: 37|System.RuntimeType, mscorlib + Data: 40|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Single, mscorlib @@ -740,7 +794,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 37 + Data: 40 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -755,13 +809,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 38|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 41|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 39|UnityEngine.RangeAttribute, UnityEngine.CoreModule + Data: 42|UnityEngine.RangeAttribute, UnityEngine.CoreModule - Name: min Entry: 4 Data: 0 @@ -791,7 +845,7 @@ MonoBehaviour: Data: inputMute - Name: $v Entry: 7 - Data: 40|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 43|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: inputMute @@ -815,7 +869,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 41|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 44|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -839,16 +893,16 @@ MonoBehaviour: Data: masterVolume - Name: $v Entry: 7 - Data: 42|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 45|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: masterVolume - Name: k__BackingField Entry: 9 - Data: 37 + Data: 40 - Name: k__BackingField Entry: 9 - Data: 37 + Data: 40 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -863,13 +917,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 43|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 46|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 44|UnityEngine.RangeAttribute, UnityEngine.CoreModule + Data: 47|UnityEngine.RangeAttribute, UnityEngine.CoreModule - Name: min Entry: 4 Data: 0 @@ -899,7 +953,7 @@ MonoBehaviour: Data: masterMute - Name: $v Entry: 7 - Data: 45|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 48|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: masterMute @@ -923,7 +977,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 46|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 49|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -947,13 +1001,13 @@ MonoBehaviour: Data: channelGroups - Name: $v Entry: 7 - Data: 47|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 50|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: channelGroups - Name: k__BackingField Entry: 7 - Data: 48|System.RuntimeType, mscorlib + Data: 51|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.AudioChannelGroup[], com.texelsaur.video @@ -962,7 +1016,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 7 - Data: 49|System.RuntimeType, mscorlib + Data: 52|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.Component[], UnityEngine.CoreModule @@ -983,7 +1037,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 50|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 53|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1007,13 +1061,13 @@ MonoBehaviour: Data: defaultChannelGroup - Name: $v Entry: 7 - Data: 51|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 54|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: defaultChannelGroup - Name: k__BackingField Entry: 7 - Data: 52|System.RuntimeType, mscorlib + Data: 55|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.AudioChannelGroup, com.texelsaur.video @@ -1022,7 +1076,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1037,7 +1091,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 53|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 56|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1061,7 +1115,7 @@ MonoBehaviour: Data: debugLogging - Name: $v Entry: 7 - Data: 54|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 57|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugLogging @@ -1085,7 +1139,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 55|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 58|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1109,7 +1163,7 @@ MonoBehaviour: Data: debugEvents - Name: $v Entry: 7 - Data: 56|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 59|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugEvents @@ -1133,7 +1187,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 57|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 60|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1157,22 +1211,16 @@ MonoBehaviour: Data: debugLog - Name: $v Entry: 7 - Data: 58|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 61|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugLog - Name: k__BackingField - Entry: 7 - Data: 59|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: Texel.DebugLog, com.texelsaur.common - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 25 - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1187,7 +1235,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 60|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 62|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1211,13 +1259,13 @@ MonoBehaviour: Data: debugState - Name: $v Entry: 7 - Data: 61|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 63|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugState - Name: k__BackingField Entry: 7 - Data: 62|System.RuntimeType, mscorlib + Data: 64|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.DebugState, com.texelsaur.common @@ -1226,7 +1274,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1241,7 +1289,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 63|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 65|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1265,16 +1313,16 @@ MonoBehaviour: Data: selectedChannelGroup - Name: $v Entry: 7 - Data: 64|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 66|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: selectedChannelGroup - Name: k__BackingField Entry: 9 - Data: 52 + Data: 55 - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1289,7 +1337,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 65|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 67|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1313,13 +1361,13 @@ MonoBehaviour: Data: selectedVideoSource - Name: $v Entry: 7 - Data: 66|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 68|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: selectedVideoSource - Name: k__BackingField Entry: 7 - Data: 67|System.RuntimeType, mscorlib + Data: 69|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.VideoSource, com.texelsaur.video @@ -1328,7 +1376,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1343,7 +1391,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 68|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 70|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1367,13 +1415,13 @@ MonoBehaviour: Data: activeAudioGroup - Name: $v Entry: 7 - Data: 69|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 71|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: activeAudioGroup - Name: k__BackingField Entry: 7 - Data: 70|System.RuntimeType, mscorlib + Data: 72|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.VideoSourceAudioGroup, com.texelsaur.video @@ -1382,7 +1430,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1397,7 +1445,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 71|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 73|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1421,7 +1469,7 @@ MonoBehaviour: Data: initialized - Name: $v Entry: 7 - Data: 72|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 74|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: initialized @@ -1445,7 +1493,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 73|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 75|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1469,16 +1517,16 @@ MonoBehaviour: Data: audioControls - Name: $v Entry: 7 - Data: 74|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 76|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioControls - Name: k__BackingField Entry: 9 - Data: 49 + Data: 52 - Name: k__BackingField Entry: 9 - Data: 49 + Data: 52 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1493,7 +1541,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 75|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 77|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1517,7 +1565,7 @@ MonoBehaviour: Data: channelCount - Name: $v Entry: 7 - Data: 76|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 78|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: channelCount @@ -1541,7 +1589,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 77|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 79|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1565,7 +1613,7 @@ MonoBehaviour: Data: ovrMaster2D - Name: $v Entry: 7 - Data: 78|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 80|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: ovrMaster2D @@ -1589,7 +1637,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 79|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 81|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1613,7 +1661,7 @@ MonoBehaviour: Data: videoMute - Name: $v Entry: 7 - Data: 80|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 82|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: videoMute @@ -1637,7 +1685,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 81|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 83|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1661,13 +1709,13 @@ MonoBehaviour: Data: vrslNullSource - Name: $v Entry: 7 - Data: 82|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 84|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: vrslNullSource - Name: k__BackingField Entry: 7 - Data: 83|System.RuntimeType, mscorlib + Data: 85|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.AudioSource, UnityEngine.AudioModule @@ -1676,7 +1724,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 83 + Data: 85 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1691,7 +1739,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 84|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 86|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioManager.cs b/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioManager.cs index f189a79..51d2875 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioManager.cs +++ b/Packages/com.texelsaur.video/Runtime/Scripts/Component/Audio/AudioManager.cs @@ -93,7 +93,7 @@ void Start() protected override void _Init() { - _DebugEvent("Init"); + _DebugLog("Init"); if (!videoPlayer) { @@ -107,6 +107,9 @@ protected override void _Init() _SetDebugState(debugState); + if (debugEvents) + eventDebugLog = debugLog; + if (!Utilities.IsValid(audioControls)) audioControls = new Component[0]; @@ -381,7 +384,6 @@ public void _RegisterControls(Component controls) public void _OnVideoStateUpdate() { - _DebugEvent("Event OnVideoStateUpdate"); if (!muteSourceForInactiveVideo) return; @@ -400,7 +402,6 @@ public void _OnVideoStateUpdate() public void _OnVideoSourceChange() { - _DebugEvent("Event OnVideoSourceChange"); _SelectVideoSource(videoPlayer.VideoManager.ActiveSource); } @@ -749,12 +750,6 @@ void _DebugError(string message, bool force = false) debugLog._Write("AudioManager", message); } - void _DebugEvent(string message) - { - if (debugEvents) - _DebugLog(message); - } - public void _SetDebugState(DebugState debug) { if (debugState) diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/Component/Playlist.asset b/Packages/com.texelsaur.video/Runtime/Scripts/Component/Playlist.asset index 90fa613..e21003a 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/Component/Playlist.asset +++ b/Packages/com.texelsaur.video/Runtime/Scripts/Component/Playlist.asset @@ -44,7 +44,7 @@ MonoBehaviour: Data: - Name: Entry: 12 - Data: 35 + Data: 36 - Name: Entry: 7 Data: @@ -470,10 +470,70 @@ MonoBehaviour: Data: - Name: $k Entry: 1 - Data: k__BackingField + Data: eventDebugLog - Name: $v Entry: 7 Data: 24|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + - Name: k__BackingField + Entry: 1 + Data: eventDebugLog + - Name: k__BackingField + Entry: 7 + Data: 25|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: Texel.DebugLog, com.texelsaur.common + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: 26|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: VRC.Udon.UdonBehaviour, VRC.Udon + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib + - Name: + Entry: 6 + Data: + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 5 + Data: false + - Name: _fieldAttributes + Entry: 7 + Data: 27|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + - Name: + Entry: 12 + Data: 0 + - Name: + Entry: 13 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 7 + Data: + - Name: $k + Entry: 1 + Data: k__BackingField + - Name: $v + Entry: 7 + Data: 28|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -497,7 +557,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 25|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -521,13 +581,13 @@ MonoBehaviour: Data: videoPlayer - Name: $v Entry: 7 - Data: 26|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: videoPlayer - Name: k__BackingField Entry: 7 - Data: 27|System.RuntimeType, mscorlib + Data: 31|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.TXLVideoPlayer, com.texelsaur.video @@ -535,14 +595,8 @@ MonoBehaviour: Entry: 8 Data: - Name: k__BackingField - Entry: 7 - Data: 28|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: VRC.Udon.UdonBehaviour, VRC.Udon - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -557,7 +611,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -581,22 +635,16 @@ MonoBehaviour: Data: debugLog - Name: $v Entry: 7 - Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 33|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugLog - Name: k__BackingField - Entry: 7 - Data: 31|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: Texel.DebugLog, com.texelsaur.common - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 25 - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -611,13 +659,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 34|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 33|UnityEngine.HeaderAttribute, UnityEngine.CoreModule + Data: 35|UnityEngine.HeaderAttribute, UnityEngine.CoreModule - Name: header Entry: 1 Data: Optional Components @@ -626,7 +674,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 34|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 36|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Log debug statements to a world object @@ -653,7 +701,7 @@ MonoBehaviour: Data: shuffle - Name: $v Entry: 7 - Data: 35|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 37|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: shuffle @@ -677,13 +725,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 36|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 38|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 37|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 39|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Shuffle track order on load @@ -710,7 +758,7 @@ MonoBehaviour: Data: autoAdvance - Name: $v Entry: 7 - Data: 38|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 40|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: autoAdvance @@ -734,13 +782,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 39|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 41|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 40|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 42|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Automatically advance to next track when finished playing @@ -767,7 +815,7 @@ MonoBehaviour: Data: trackCatalogMode - Name: $v Entry: 7 - Data: 41|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 43|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: trackCatalogMode @@ -791,13 +839,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 42|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 44|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 43|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 45|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Treat tracks as independent, unlinked entities. Disables normal playlist @@ -825,7 +873,7 @@ MonoBehaviour: Data: immediate - Name: $v Entry: 7 - Data: 44|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 46|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: immediate @@ -849,13 +897,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 45|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 47|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 46|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 48|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: When loading new playlist, immediately start playing first track even @@ -883,7 +931,7 @@ MonoBehaviour: Data: resumeAfterLoad - Name: $v Entry: 7 - Data: 47|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 49|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: resumeAfterLoad @@ -907,13 +955,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 48|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 50|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 49|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 51|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Resume playing from the playlist after a manually loaded URL is finished. @@ -940,13 +988,13 @@ MonoBehaviour: Data: playlistCatalog - Name: $v Entry: 7 - Data: 50|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 52|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playlistCatalog - Name: k__BackingField Entry: 7 - Data: 51|System.RuntimeType, mscorlib + Data: 53|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.PlaylistCatalog, com.texelsaur.video @@ -955,7 +1003,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -970,13 +1018,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 52|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 54|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 53|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 55|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Optional catalog to sync load playlist data from @@ -1003,13 +1051,13 @@ MonoBehaviour: Data: playlistData - Name: $v Entry: 7 - Data: 54|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 56|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playlistData - Name: k__BackingField Entry: 7 - Data: 55|System.RuntimeType, mscorlib + Data: 57|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.PlaylistData, com.texelsaur.video @@ -1018,7 +1066,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1033,13 +1081,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 56|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 58|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 57|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 59|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Default playlist track set @@ -1066,13 +1114,13 @@ MonoBehaviour: Data: playlist - Name: $v Entry: 7 - Data: 58|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 60|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playlist - Name: k__BackingField Entry: 7 - Data: 59|System.RuntimeType, mscorlib + Data: 61|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDKBase.VRCUrl[], VRCSDKBase @@ -1081,7 +1129,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 59 + Data: 61 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1096,7 +1144,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 60|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 62|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1120,16 +1168,16 @@ MonoBehaviour: Data: questPlaylist - Name: $v Entry: 7 - Data: 61|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 63|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: questPlaylist - Name: k__BackingField Entry: 9 - Data: 59 + Data: 61 - Name: k__BackingField Entry: 9 - Data: 59 + Data: 61 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1144,7 +1192,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 62|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 64|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1168,13 +1216,13 @@ MonoBehaviour: Data: trackNames - Name: $v Entry: 7 - Data: 63|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 65|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: trackNames - Name: k__BackingField Entry: 7 - Data: 64|System.RuntimeType, mscorlib + Data: 66|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.String[], mscorlib @@ -1183,7 +1231,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 64 + Data: 66 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1198,7 +1246,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 65|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 67|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1222,7 +1270,7 @@ MonoBehaviour: Data: syncEnabled - Name: $v Entry: 7 - Data: 66|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 68|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncEnabled @@ -1246,19 +1294,19 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 67|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 69|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 68|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 70|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: - Name: Entry: 7 - Data: 69|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime + Data: 71|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -1282,13 +1330,13 @@ MonoBehaviour: Data: syncCurrentIndex - Name: $v Entry: 7 - Data: 70|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 72|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncCurrentIndex - Name: k__BackingField Entry: 7 - Data: 71|System.RuntimeType, mscorlib + Data: 73|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Int16, mscorlib @@ -1297,7 +1345,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1312,13 +1360,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 72|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 74|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 73|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 75|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -1342,16 +1390,16 @@ MonoBehaviour: Data: syncCurrentIndexSerial - Name: $v Entry: 7 - Data: 74|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 76|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncCurrentIndexSerial - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1366,13 +1414,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 75|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 77|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 76|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 78|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -1396,16 +1444,16 @@ MonoBehaviour: Data: syncPlaylistSerial - Name: $v Entry: 7 - Data: 77|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 79|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncPlaylistSerial - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1420,13 +1468,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 78|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 80|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 79|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 81|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -1450,13 +1498,13 @@ MonoBehaviour: Data: syncTrackerOrder - Name: $v Entry: 7 - Data: 80|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 82|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncTrackerOrder - Name: k__BackingField Entry: 7 - Data: 81|System.RuntimeType, mscorlib + Data: 83|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Byte[], mscorlib @@ -1465,7 +1513,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 81 + Data: 83 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1480,13 +1528,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 82|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 84|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 83|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 85|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -1510,7 +1558,7 @@ MonoBehaviour: Data: syncShuffle - Name: $v Entry: 7 - Data: 84|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 86|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncShuffle @@ -1534,19 +1582,19 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 85|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 87|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 86|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 88|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: - Name: Entry: 7 - Data: 87|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime + Data: 89|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -1570,16 +1618,16 @@ MonoBehaviour: Data: syncShuffleSerial - Name: $v Entry: 7 - Data: 88|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 90|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncShuffleSerial - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1594,13 +1642,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 89|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 91|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 90|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 92|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -1624,7 +1672,7 @@ MonoBehaviour: Data: syncCatalogueIndex - Name: $v Entry: 7 - Data: 91|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 93|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncCatalogueIndex @@ -1648,19 +1696,19 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 92|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 94|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 93|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 95|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: - Name: Entry: 7 - Data: 94|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime + Data: 96|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -1684,7 +1732,7 @@ MonoBehaviour: Data: syncAutoAdvance - Name: $v Entry: 7 - Data: 95|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 97|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncAutoAdvance @@ -1708,19 +1756,19 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 96|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 98|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 97|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 99|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: - Name: Entry: 7 - Data: 98|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime + Data: 100|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -1744,16 +1792,16 @@ MonoBehaviour: Data: prevCurrentIndexSerial - Name: $v Entry: 7 - Data: 99|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 101|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: prevCurrentIndexSerial - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1768,7 +1816,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 100|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 102|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -1793,16 +1841,16 @@ MonoBehaviour: Data: prevPlaylistSerial - Name: $v Entry: 7 - Data: 101|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 103|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: prevPlaylistSerial - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1817,7 +1865,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 102|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 104|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -1842,16 +1890,16 @@ MonoBehaviour: Data: prevShuffleSerial - Name: $v Entry: 7 - Data: 103|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 105|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: prevShuffleSerial - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 9 - Data: 71 + Data: 73 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1866,7 +1914,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 104|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 106|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -1891,7 +1939,7 @@ MonoBehaviour: Data: _initDeserialize - Name: $v Entry: 7 - Data: 105|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 107|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _initDeserialize @@ -1915,7 +1963,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 106|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 108|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -1940,7 +1988,7 @@ MonoBehaviour: Data: trackCount - Name: $v Entry: 7 - Data: 107|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 109|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: trackCount @@ -1964,14 +2012,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 108|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 110|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 109|System.NonSerializedAttribute, mscorlib + Data: 111|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/Component/PlaylistQueue.asset b/Packages/com.texelsaur.video/Runtime/Scripts/Component/PlaylistQueue.asset index 8f165f3..db0e23c 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/Component/PlaylistQueue.asset +++ b/Packages/com.texelsaur.video/Runtime/Scripts/Component/PlaylistQueue.asset @@ -44,7 +44,7 @@ MonoBehaviour: Data: - Name: Entry: 12 - Data: 19 + Data: 20 - Name: Entry: 7 Data: @@ -470,10 +470,70 @@ MonoBehaviour: Data: - Name: $k Entry: 1 - Data: k__BackingField + Data: eventDebugLog - Name: $v Entry: 7 Data: 24|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + - Name: k__BackingField + Entry: 1 + Data: eventDebugLog + - Name: k__BackingField + Entry: 7 + Data: 25|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: Texel.DebugLog, com.texelsaur.common + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: 26|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: VRC.Udon.UdonBehaviour, VRC.Udon + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib + - Name: + Entry: 6 + Data: + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 5 + Data: false + - Name: _fieldAttributes + Entry: 7 + Data: 27|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + - Name: + Entry: 12 + Data: 0 + - Name: + Entry: 13 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 7 + Data: + - Name: $k + Entry: 1 + Data: k__BackingField + - Name: $v + Entry: 7 + Data: 28|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -497,7 +557,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 25|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -521,13 +581,13 @@ MonoBehaviour: Data: videoPlayer - Name: $v Entry: 7 - Data: 26|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: videoPlayer - Name: k__BackingField Entry: 7 - Data: 27|System.RuntimeType, mscorlib + Data: 31|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.TXLVideoPlayer, com.texelsaur.video @@ -535,14 +595,8 @@ MonoBehaviour: Entry: 8 Data: - Name: k__BackingField - Entry: 7 - Data: 28|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: VRC.Udon.UdonBehaviour, VRC.Udon - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -557,7 +611,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -581,7 +635,7 @@ MonoBehaviour: Data: removeTracks - Name: $v Entry: 7 - Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 33|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: removeTracks @@ -605,7 +659,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 31|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 34|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -629,13 +683,13 @@ MonoBehaviour: Data: syncQueue - Name: $v Entry: 7 - Data: 32|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 35|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncQueue - Name: k__BackingField Entry: 7 - Data: 33|System.RuntimeType, mscorlib + Data: 36|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDKBase.VRCUrl[], VRCSDKBase @@ -644,7 +698,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 33 + Data: 36 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -659,13 +713,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 34|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 37|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 35|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 38|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -689,7 +743,7 @@ MonoBehaviour: Data: syncTrackCount - Name: $v Entry: 7 - Data: 36|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 39|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncTrackCount @@ -713,13 +767,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 37|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 40|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 38|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 41|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -743,7 +797,7 @@ MonoBehaviour: Data: syncCurrentIndex - Name: $v Entry: 7 - Data: 39|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 42|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncCurrentIndex @@ -767,13 +821,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 40|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 43|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 41|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 44|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -797,7 +851,7 @@ MonoBehaviour: Data: syncEnabled - Name: $v Entry: 7 - Data: 42|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 45|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncEnabled @@ -821,19 +875,19 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 43|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 46|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 44|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 47|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: - Name: Entry: 7 - Data: 45|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime + Data: 48|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -857,7 +911,7 @@ MonoBehaviour: Data: syncQueueUpdate - Name: $v Entry: 7 - Data: 46|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 49|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncQueueUpdate @@ -881,13 +935,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 47|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 50|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 48|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 51|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -911,7 +965,7 @@ MonoBehaviour: Data: prevQueueUpdate - Name: $v Entry: 7 - Data: 49|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 52|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: prevQueueUpdate @@ -935,7 +989,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 50|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 53|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -959,7 +1013,7 @@ MonoBehaviour: Data: syncTrackChangeUpdate - Name: $v Entry: 7 - Data: 51|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 54|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncTrackChangeUpdate @@ -983,13 +1037,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 52|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 55|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 53|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 56|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -1013,7 +1067,7 @@ MonoBehaviour: Data: prevTrackChangeUpdate - Name: $v Entry: 7 - Data: 54|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 57|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: prevTrackChangeUpdate @@ -1037,7 +1091,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 55|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 58|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/Component/ScreenManager.asset b/Packages/com.texelsaur.video/Runtime/Scripts/Component/ScreenManager.asset index a6fd1d3..b4ff0e4 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/Component/ScreenManager.asset +++ b/Packages/com.texelsaur.video/Runtime/Scripts/Component/ScreenManager.asset @@ -44,7 +44,7 @@ MonoBehaviour: Data: - Name: Entry: 12 - Data: 109 + Data: 110 - Name: Entry: 7 Data: @@ -470,10 +470,70 @@ MonoBehaviour: Data: - Name: $k Entry: 1 - Data: k__BackingField + Data: eventDebugLog - Name: $v Entry: 7 Data: 24|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + - Name: k__BackingField + Entry: 1 + Data: eventDebugLog + - Name: k__BackingField + Entry: 7 + Data: 25|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: Texel.DebugLog, com.texelsaur.common + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: 26|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: VRC.Udon.UdonBehaviour, VRC.Udon + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib + - Name: + Entry: 6 + Data: + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 5 + Data: false + - Name: _fieldAttributes + Entry: 7 + Data: 27|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + - Name: + Entry: 12 + Data: 0 + - Name: + Entry: 13 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 7 + Data: + - Name: $k + Entry: 1 + Data: k__BackingField + - Name: $v + Entry: 7 + Data: 28|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -497,7 +557,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 25|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -521,13 +581,13 @@ MonoBehaviour: Data: videoPlayer - Name: $v Entry: 7 - Data: 26|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: videoPlayer - Name: k__BackingField Entry: 7 - Data: 27|System.RuntimeType, mscorlib + Data: 31|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.TXLVideoPlayer, com.texelsaur.video @@ -535,14 +595,8 @@ MonoBehaviour: Entry: 8 Data: - Name: k__BackingField - Entry: 7 - Data: 28|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: VRC.Udon.UdonBehaviour, VRC.Udon - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -557,13 +611,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 30|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 33|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: A proxy for dispatching video-related events to this object @@ -572,7 +626,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 31|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 34|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -596,22 +650,16 @@ MonoBehaviour: Data: debugLog - Name: $v Entry: 7 - Data: 32|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 35|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugLog - Name: k__BackingField - Entry: 7 - Data: 33|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: Texel.DebugLog, com.texelsaur.common - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 25 - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -626,13 +674,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 34|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 36|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 35|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 37|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Log debug statements to a world object @@ -641,7 +689,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 36|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 38|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -665,13 +713,13 @@ MonoBehaviour: Data: debugState - Name: $v Entry: 7 - Data: 37|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 39|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugState - Name: k__BackingField Entry: 7 - Data: 38|System.RuntimeType, mscorlib + Data: 40|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.DebugState, com.texelsaur.common @@ -680,7 +728,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -695,13 +743,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 39|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 41|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 40|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 42|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -725,7 +773,7 @@ MonoBehaviour: Data: vrcLogging - Name: $v Entry: 7 - Data: 41|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 43|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: vrcLogging @@ -749,13 +797,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 42|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 44|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 43|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 45|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -779,7 +827,7 @@ MonoBehaviour: Data: eventLogging - Name: $v Entry: 7 - Data: 44|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 46|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: eventLogging @@ -803,13 +851,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 45|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 47|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 46|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 48|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -833,7 +881,7 @@ MonoBehaviour: Data: lowLevelLogging - Name: $v Entry: 7 - Data: 47|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 49|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: lowLevelLogging @@ -857,13 +905,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 48|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 50|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 49|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 51|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -887,7 +935,7 @@ MonoBehaviour: Data: latchErrorState - Name: $v Entry: 7 - Data: 50|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 52|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: latchErrorState @@ -911,13 +959,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 51|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 53|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 52|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 54|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Prevent screen state from cycling between loading and error placeholders. @@ -926,7 +974,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 53|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 55|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -950,7 +998,7 @@ MonoBehaviour: Data: useMaterialOverrides - Name: $v Entry: 7 - Data: 54|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 56|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: useMaterialOverrides @@ -974,7 +1022,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 55|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 57|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -998,13 +1046,13 @@ MonoBehaviour: Data: playbackMaterial - Name: $v Entry: 7 - Data: 56|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 58|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playbackMaterial - Name: k__BackingField Entry: 7 - Data: 57|System.RuntimeType, mscorlib + Data: 59|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.Material, UnityEngine.CoreModule @@ -1013,7 +1061,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1028,13 +1076,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 58|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 60|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 59|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 61|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen material to apply when video is playing back. The object's @@ -1044,7 +1092,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 60|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 62|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1068,16 +1116,16 @@ MonoBehaviour: Data: logoMaterial - Name: $v Entry: 7 - Data: 61|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 63|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: logoMaterial - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1092,13 +1140,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 62|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 64|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 63|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 65|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen material to apply when no video is playing or loading. @@ -1107,7 +1155,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 64|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 66|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1131,16 +1179,16 @@ MonoBehaviour: Data: loadingMaterial - Name: $v Entry: 7 - Data: 65|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 67|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: loadingMaterial - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1155,13 +1203,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 66|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 68|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 67|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 69|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen material to apply when a video is being loaded. Falls back @@ -1171,7 +1219,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 68|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 70|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1195,16 +1243,16 @@ MonoBehaviour: Data: syncMaterial - Name: $v Entry: 7 - Data: 69|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 71|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncMaterial - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1219,13 +1267,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 70|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 72|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 71|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 73|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1249,16 +1297,16 @@ MonoBehaviour: Data: audioMaterial - Name: $v Entry: 7 - Data: 72|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 74|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioMaterial - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1273,13 +1321,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 73|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 75|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 74|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 76|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen material to apply when an audio-only video is detected. @@ -1288,7 +1336,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 75|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 77|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1312,16 +1360,16 @@ MonoBehaviour: Data: errorMaterial - Name: $v Entry: 7 - Data: 76|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 78|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: errorMaterial - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1336,13 +1384,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 77|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 79|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 78|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 80|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen material to apply when an error has occurred. Falls back @@ -1352,7 +1400,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 79|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 81|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1376,16 +1424,16 @@ MonoBehaviour: Data: errorInvalidMaterial - Name: $v Entry: 7 - Data: 80|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 82|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: errorInvalidMaterial - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1400,13 +1448,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 81|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 83|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 82|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 84|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen material to apply when an invalid URL or offline stream has @@ -1416,7 +1464,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 83|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 85|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1440,16 +1488,16 @@ MonoBehaviour: Data: errorRateLimitedMaterial - Name: $v Entry: 7 - Data: 84|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 86|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: errorRateLimitedMaterial - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1464,13 +1512,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 85|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 87|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 86|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 88|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen material to apply when loading has been temporarily rate-limited. @@ -1480,7 +1528,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 87|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 89|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1504,16 +1552,16 @@ MonoBehaviour: Data: errorBlockedMaterial - Name: $v Entry: 7 - Data: 88|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 90|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: errorBlockedMaterial - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 9 - Data: 57 + Data: 59 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1528,13 +1576,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 89|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 91|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 90|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 92|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen material to apply when an untrusted URL has been loaded and @@ -1544,7 +1592,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 91|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 93|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1568,13 +1616,13 @@ MonoBehaviour: Data: screenMesh - Name: $v Entry: 7 - Data: 92|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 94|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: screenMesh - Name: k__BackingField Entry: 7 - Data: 93|System.RuntimeType, mscorlib + Data: 95|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.MeshRenderer[], UnityEngine.CoreModule @@ -1583,7 +1631,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 93 + Data: 95 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1598,13 +1646,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 94|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 96|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 95|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 97|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1628,7 +1676,7 @@ MonoBehaviour: Data: screenMaterialIndex - Name: $v Entry: 7 - Data: 96|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 98|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: screenMaterialIndex @@ -1652,13 +1700,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 97|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 99|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 98|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 100|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1682,7 +1730,7 @@ MonoBehaviour: Data: useTextureOverrides - Name: $v Entry: 7 - Data: 99|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 101|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: useTextureOverrides @@ -1706,7 +1754,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 100|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 102|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -1731,7 +1779,7 @@ MonoBehaviour: Data: overrideAspectRatio - Name: $v Entry: 7 - Data: 101|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 103|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: overrideAspectRatio @@ -1755,14 +1803,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 102|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 104|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 103|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 105|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Whether the aspect ratio for placeholder textures should be overridden @@ -1773,7 +1821,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 104|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 106|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1797,13 +1845,13 @@ MonoBehaviour: Data: aspectRatio - Name: $v Entry: 7 - Data: 105|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 107|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: aspectRatio - Name: k__BackingField Entry: 7 - Data: 106|System.RuntimeType, mscorlib + Data: 108|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Single, mscorlib @@ -1812,7 +1860,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 106 + Data: 108 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1827,14 +1875,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 107|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 109|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 108|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 110|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The aspect ratio that should be used for placeholder textures, ignoring @@ -1844,7 +1892,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 109|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 111|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1868,13 +1916,13 @@ MonoBehaviour: Data: logoTexture - Name: $v Entry: 7 - Data: 110|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 112|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: logoTexture - Name: k__BackingField Entry: 7 - Data: 111|System.RuntimeType, mscorlib + Data: 113|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.Texture, UnityEngine.CoreModule @@ -1883,7 +1931,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1898,14 +1946,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 112|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 114|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 113|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 115|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen texture to apply when no video is playing or loading. @@ -1914,7 +1962,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 114|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 116|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -1938,16 +1986,16 @@ MonoBehaviour: Data: loadingTexture - Name: $v Entry: 7 - Data: 115|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 117|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: loadingTexture - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1962,14 +2010,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 116|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 118|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 117|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 119|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen texture to apply when a video is being loaded. Falls back @@ -1979,7 +2027,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 118|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 120|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2003,16 +2051,16 @@ MonoBehaviour: Data: syncTexture - Name: $v Entry: 7 - Data: 119|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 121|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncTexture - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2027,14 +2075,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 120|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 122|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 121|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 123|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2058,16 +2106,16 @@ MonoBehaviour: Data: audioTexture - Name: $v Entry: 7 - Data: 122|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 124|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioTexture - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2082,14 +2130,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 123|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 125|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 124|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 126|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen texture to apply when an audio-only video is detected. @@ -2098,7 +2146,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 125|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 127|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2122,16 +2170,16 @@ MonoBehaviour: Data: errorTexture - Name: $v Entry: 7 - Data: 126|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 128|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: errorTexture - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2146,14 +2194,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 127|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 129|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 128|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 130|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen texture to apply when an error has occurred. Falls back to @@ -2163,7 +2211,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 129|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 131|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2187,16 +2235,16 @@ MonoBehaviour: Data: errorInvalidTexture - Name: $v Entry: 7 - Data: 130|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 132|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: errorInvalidTexture - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2211,14 +2259,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 131|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 133|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 132|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 134|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen texture to apply when an invalid URL or offline stream has @@ -2228,7 +2276,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 133|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 135|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2252,16 +2300,16 @@ MonoBehaviour: Data: errorRateLimitedTexture - Name: $v Entry: 7 - Data: 134|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 136|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: errorRateLimitedTexture - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2276,14 +2324,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 135|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 137|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 136|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 138|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen texture to apply when loading has been temporarily rate-limited. @@ -2293,7 +2341,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 137|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 139|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2317,16 +2365,16 @@ MonoBehaviour: Data: errorBlockedTexture - Name: $v Entry: 7 - Data: 138|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 140|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: errorBlockedTexture - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2341,14 +2389,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 139|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 141|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 140|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 142|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen texture to apply when an untrusted URL has been loaded and @@ -2358,7 +2406,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 141|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 143|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2382,16 +2430,16 @@ MonoBehaviour: Data: editorTexture - Name: $v Entry: 7 - Data: 142|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 144|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: editorTexture - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2406,14 +2454,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 143|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 145|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 144|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 146|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: The screen texture to apply in Unity's editor runtime @@ -2422,7 +2470,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 145|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 147|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2446,13 +2494,13 @@ MonoBehaviour: Data: materialUpdateList - Name: $v Entry: 7 - Data: 146|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 148|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: materialUpdateList - Name: k__BackingField Entry: 7 - Data: 147|System.RuntimeType, mscorlib + Data: 149|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.Material[], UnityEngine.CoreModule @@ -2461,7 +2509,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 147 + Data: 149 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2476,14 +2524,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 148|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 150|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 149|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 151|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2507,13 +2555,13 @@ MonoBehaviour: Data: materialPropertyList - Name: $v Entry: 7 - Data: 150|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 152|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: materialPropertyList - Name: k__BackingField Entry: 7 - Data: 151|System.RuntimeType, mscorlib + Data: 153|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.ScreenPropertyMap[], com.texelsaur.video @@ -2522,7 +2570,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 7 - Data: 152|System.RuntimeType, mscorlib + Data: 154|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.Component[], UnityEngine.CoreModule @@ -2543,14 +2591,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 153|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 155|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 154|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 156|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2574,16 +2622,16 @@ MonoBehaviour: Data: propMeshList - Name: $v Entry: 7 - Data: 155|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 157|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: propMeshList - Name: k__BackingField Entry: 9 - Data: 93 + Data: 95 - Name: k__BackingField Entry: 9 - Data: 93 + Data: 95 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2598,14 +2646,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 156|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 158|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 157|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 159|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2629,7 +2677,7 @@ MonoBehaviour: Data: propMaterialOverrideList - Name: $v Entry: 7 - Data: 158|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 160|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: propMaterialOverrideList @@ -2653,14 +2701,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 159|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 161|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 160|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 162|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2684,7 +2732,7 @@ MonoBehaviour: Data: propMaterialIndexList - Name: $v Entry: 7 - Data: 161|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 163|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: propMaterialIndexList @@ -2708,14 +2756,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 162|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 164|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 163|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 165|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2739,16 +2787,16 @@ MonoBehaviour: Data: propPropertyList - Name: $v Entry: 7 - Data: 164|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 166|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: propPropertyList - Name: k__BackingField Entry: 9 - Data: 151 + Data: 153 - Name: k__BackingField Entry: 9 - Data: 152 + Data: 154 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2763,14 +2811,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 165|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 167|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 166|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 168|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2794,16 +2842,16 @@ MonoBehaviour: Data: globalPropertyList - Name: $v Entry: 7 - Data: 167|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 169|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: globalPropertyList - Name: k__BackingField Entry: 9 - Data: 151 + Data: 153 - Name: k__BackingField Entry: 9 - Data: 152 + Data: 154 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2818,14 +2866,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 168|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 170|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 169|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 171|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2849,7 +2897,7 @@ MonoBehaviour: Data: useRenderOut - Name: $v Entry: 7 - Data: 170|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 172|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: useRenderOut @@ -2873,14 +2921,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 171|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 173|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 172|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 174|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2904,13 +2952,13 @@ MonoBehaviour: Data: outputCRT - Name: $v Entry: 7 - Data: 173|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 175|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: outputCRT - Name: k__BackingField Entry: 7 - Data: 174|System.RuntimeType, mscorlib + Data: 176|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.CustomRenderTexture, UnityEngine.CoreModule @@ -2919,7 +2967,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 174 + Data: 176 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2934,14 +2982,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 175|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 177|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 176|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 178|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2965,13 +3013,13 @@ MonoBehaviour: Data: outputMaterialProperties - Name: $v Entry: 7 - Data: 177|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 179|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: outputMaterialProperties - Name: k__BackingField Entry: 7 - Data: 178|System.RuntimeType, mscorlib + Data: 180|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.ScreenPropertyMap, com.texelsaur.video @@ -2980,7 +3028,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2995,14 +3043,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 179|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 181|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 180|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 182|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -3026,13 +3074,13 @@ MonoBehaviour: Data: renderOutCrt - Name: $v Entry: 7 - Data: 181|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 183|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: renderOutCrt - Name: k__BackingField Entry: 7 - Data: 182|System.RuntimeType, mscorlib + Data: 184|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.CustomRenderTexture[], UnityEngine.CoreModule @@ -3041,7 +3089,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 182 + Data: 184 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3056,14 +3104,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 183|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 185|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 184|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 186|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -3087,16 +3135,16 @@ MonoBehaviour: Data: renderOutMatProps - Name: $v Entry: 7 - Data: 185|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 187|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: renderOutMatProps - Name: k__BackingField Entry: 9 - Data: 151 + Data: 153 - Name: k__BackingField Entry: 9 - Data: 152 + Data: 154 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3111,14 +3159,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 186|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 188|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 187|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 189|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -3142,13 +3190,13 @@ MonoBehaviour: Data: renderOutSize - Name: $v Entry: 7 - Data: 188|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 190|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: renderOutSize - Name: k__BackingField Entry: 7 - Data: 189|System.RuntimeType, mscorlib + Data: 191|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.Vector2Int[], UnityEngine.CoreModule @@ -3157,7 +3205,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 189 + Data: 191 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3172,14 +3220,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 190|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 192|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 191|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 193|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -3203,13 +3251,13 @@ MonoBehaviour: Data: renderOutTargetAspect - Name: $v Entry: 7 - Data: 192|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 194|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: renderOutTargetAspect - Name: k__BackingField Entry: 7 - Data: 193|System.RuntimeType, mscorlib + Data: 195|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Single[], mscorlib @@ -3218,7 +3266,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 193 + Data: 195 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3233,14 +3281,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 194|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 196|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 195|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 197|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -3264,13 +3312,13 @@ MonoBehaviour: Data: renderOutResize - Name: $v Entry: 7 - Data: 196|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 198|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: renderOutResize - Name: k__BackingField Entry: 7 - Data: 197|System.RuntimeType, mscorlib + Data: 199|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Boolean[], mscorlib @@ -3279,7 +3327,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 197 + Data: 199 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3294,14 +3342,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 198|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 200|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 199|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 201|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -3325,16 +3373,16 @@ MonoBehaviour: Data: renderOutExpandSize - Name: $v Entry: 7 - Data: 200|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 202|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: renderOutExpandSize - Name: k__BackingField Entry: 9 - Data: 197 + Data: 199 - Name: k__BackingField Entry: 9 - Data: 197 + Data: 199 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3349,14 +3397,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 201|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 203|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 202|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 204|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -3380,16 +3428,16 @@ MonoBehaviour: Data: renderOutGlobalTex - Name: $v Entry: 7 - Data: 203|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 205|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: renderOutGlobalTex - Name: k__BackingField Entry: 9 - Data: 197 + Data: 199 - Name: k__BackingField Entry: 9 - Data: 197 + Data: 199 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3404,14 +3452,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 204|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 206|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 205|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 207|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -3435,7 +3483,7 @@ MonoBehaviour: Data: downloadLogoImage - Name: $v Entry: 7 - Data: 206|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 208|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: downloadLogoImage @@ -3459,14 +3507,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 207|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 209|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 208|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 210|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -3490,13 +3538,13 @@ MonoBehaviour: Data: downloadLogoImageUrl - Name: $v Entry: 7 - Data: 209|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 211|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: downloadLogoImageUrl - Name: k__BackingField Entry: 7 - Data: 210|System.RuntimeType, mscorlib + Data: 212|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDKBase.VRCUrl, VRCSDKBase @@ -3505,7 +3553,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 210 + Data: 212 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3520,14 +3568,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 211|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 213|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 212|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 214|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -3551,7 +3599,7 @@ MonoBehaviour: Data: baseIndexCrt - Name: $v Entry: 7 - Data: 213|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 215|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: baseIndexCrt @@ -3575,7 +3623,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 214|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 216|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3600,7 +3648,7 @@ MonoBehaviour: Data: shaderPropCrtLength - Name: $v Entry: 7 - Data: 215|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 217|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: shaderPropCrtLength @@ -3624,7 +3672,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 216|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 218|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3649,7 +3697,7 @@ MonoBehaviour: Data: baseIndexMat - Name: $v Entry: 7 - Data: 217|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 219|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: baseIndexMat @@ -3673,7 +3721,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 218|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 220|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3698,7 +3746,7 @@ MonoBehaviour: Data: shaderPropMatLength - Name: $v Entry: 7 - Data: 219|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 221|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: shaderPropMatLength @@ -3722,7 +3770,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 220|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 222|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3747,7 +3795,7 @@ MonoBehaviour: Data: baseIndexProp - Name: $v Entry: 7 - Data: 221|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 223|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: baseIndexProp @@ -3771,7 +3819,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 222|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 224|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3796,7 +3844,7 @@ MonoBehaviour: Data: shaderPropPropLength - Name: $v Entry: 7 - Data: 223|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 225|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: shaderPropPropLength @@ -3820,7 +3868,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 224|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 226|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3845,7 +3893,7 @@ MonoBehaviour: Data: baseIndexGlobal - Name: $v Entry: 7 - Data: 225|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 227|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: baseIndexGlobal @@ -3869,7 +3917,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 226|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 228|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3894,7 +3942,7 @@ MonoBehaviour: Data: shaderPropGlobalLength - Name: $v Entry: 7 - Data: 227|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 229|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: shaderPropGlobalLength @@ -3918,7 +3966,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 228|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 230|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3943,13 +3991,13 @@ MonoBehaviour: Data: shaderPropMainTexList - Name: $v Entry: 7 - Data: 229|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 231|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: shaderPropMainTexList - Name: k__BackingField Entry: 7 - Data: 230|System.RuntimeType, mscorlib + Data: 232|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.String[], mscorlib @@ -3958,7 +4006,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 230 + Data: 232 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3973,7 +4021,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 231|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 233|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3998,16 +4046,16 @@ MonoBehaviour: Data: shaderPropAVProList - Name: $v Entry: 7 - Data: 232|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 234|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: shaderPropAVProList - Name: k__BackingField Entry: 9 - Data: 230 + Data: 232 - Name: k__BackingField Entry: 9 - Data: 230 + Data: 232 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4022,7 +4070,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 233|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 235|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4047,16 +4095,16 @@ MonoBehaviour: Data: shaderPropInvertList - Name: $v Entry: 7 - Data: 234|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 236|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: shaderPropInvertList - Name: k__BackingField Entry: 9 - Data: 230 + Data: 232 - Name: k__BackingField Entry: 9 - Data: 230 + Data: 232 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4071,7 +4119,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 235|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 237|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4096,16 +4144,16 @@ MonoBehaviour: Data: shaderPropGammaList - Name: $v Entry: 7 - Data: 236|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 238|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: shaderPropGammaList - Name: k__BackingField Entry: 9 - Data: 230 + Data: 232 - Name: k__BackingField Entry: 9 - Data: 230 + Data: 232 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4120,7 +4168,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 237|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 239|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4145,16 +4193,16 @@ MonoBehaviour: Data: shaderPropFitList - Name: $v Entry: 7 - Data: 238|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 240|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: shaderPropFitList - Name: k__BackingField Entry: 9 - Data: 230 + Data: 232 - Name: k__BackingField Entry: 9 - Data: 230 + Data: 232 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4169,7 +4217,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 239|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 241|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4194,16 +4242,16 @@ MonoBehaviour: Data: shaderPropAspectRatioList - Name: $v Entry: 7 - Data: 240|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 242|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: shaderPropAspectRatioList - Name: k__BackingField Entry: 9 - Data: 230 + Data: 232 - Name: k__BackingField Entry: 9 - Data: 230 + Data: 232 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4218,7 +4266,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 241|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 243|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4243,7 +4291,7 @@ MonoBehaviour: Data: globalPropMainTexList - Name: $v Entry: 7 - Data: 242|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 244|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: globalPropMainTexList @@ -4267,7 +4315,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 243|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 245|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4292,7 +4340,7 @@ MonoBehaviour: Data: globalPropAVProList - Name: $v Entry: 7 - Data: 244|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 246|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: globalPropAVProList @@ -4316,7 +4364,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 245|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 247|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4341,7 +4389,7 @@ MonoBehaviour: Data: globalPropInvertList - Name: $v Entry: 7 - Data: 246|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 248|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: globalPropInvertList @@ -4365,7 +4413,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 247|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 249|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4390,7 +4438,7 @@ MonoBehaviour: Data: globalPropGammaList - Name: $v Entry: 7 - Data: 248|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 250|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: globalPropGammaList @@ -4414,7 +4462,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 249|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 251|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4439,7 +4487,7 @@ MonoBehaviour: Data: globalPropFitList - Name: $v Entry: 7 - Data: 250|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 252|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: globalPropFitList @@ -4463,7 +4511,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 251|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 253|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4488,7 +4536,7 @@ MonoBehaviour: Data: globalPropAspectRatioList - Name: $v Entry: 7 - Data: 252|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 254|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: globalPropAspectRatioList @@ -4512,7 +4560,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 253|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 255|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4537,16 +4585,16 @@ MonoBehaviour: Data: _originalScreenMaterial - Name: $v Entry: 7 - Data: 254|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 256|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _originalScreenMaterial - Name: k__BackingField Entry: 9 - Data: 147 + Data: 149 - Name: k__BackingField Entry: 9 - Data: 147 + Data: 149 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4561,7 +4609,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 255|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 257|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4586,13 +4634,13 @@ MonoBehaviour: Data: _originalMaterialTexture - Name: $v Entry: 7 - Data: 256|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 258|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _originalMaterialTexture - Name: k__BackingField Entry: 7 - Data: 257|System.RuntimeType, mscorlib + Data: 259|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.Texture[], UnityEngine.CoreModule @@ -4601,7 +4649,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 257 + Data: 259 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4616,7 +4664,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 258|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 260|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4641,7 +4689,7 @@ MonoBehaviour: Data: _originalMatAVPro - Name: $v Entry: 7 - Data: 259|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 261|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _originalMatAVPro @@ -4665,7 +4713,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 260|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 262|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4690,7 +4738,7 @@ MonoBehaviour: Data: _originalMatInvert - Name: $v Entry: 7 - Data: 261|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 263|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _originalMatInvert @@ -4714,7 +4762,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 262|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 264|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4739,7 +4787,7 @@ MonoBehaviour: Data: _originalMatGamma - Name: $v Entry: 7 - Data: 263|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 265|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _originalMatGamma @@ -4763,7 +4811,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 264|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 266|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4788,7 +4836,7 @@ MonoBehaviour: Data: _originalMatFit - Name: $v Entry: 7 - Data: 265|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 267|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _originalMatFit @@ -4812,7 +4860,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 266|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 268|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4837,16 +4885,16 @@ MonoBehaviour: Data: _originalMatAspectRatio - Name: $v Entry: 7 - Data: 267|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 269|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _originalMatAspectRatio - Name: k__BackingField Entry: 9 - Data: 193 + Data: 195 - Name: k__BackingField Entry: 9 - Data: 193 + Data: 195 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4861,7 +4909,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 268|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 270|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4886,7 +4934,7 @@ MonoBehaviour: Data: screenIndexFallbackMap - Name: $v Entry: 7 - Data: 269|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 271|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: screenIndexFallbackMap @@ -4910,7 +4958,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 270|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 272|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4935,16 +4983,16 @@ MonoBehaviour: Data: replacementMaterials - Name: $v Entry: 7 - Data: 271|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 273|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: replacementMaterials - Name: k__BackingField Entry: 9 - Data: 147 + Data: 149 - Name: k__BackingField Entry: 9 - Data: 147 + Data: 149 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4959,7 +5007,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 272|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 274|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4984,16 +5032,16 @@ MonoBehaviour: Data: replacementTextures - Name: $v Entry: 7 - Data: 273|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 275|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: replacementTextures - Name: k__BackingField Entry: 9 - Data: 257 + Data: 259 - Name: k__BackingField Entry: 9 - Data: 257 + Data: 259 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -5008,7 +5056,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 274|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 276|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5033,13 +5081,13 @@ MonoBehaviour: Data: captureRenderer - Name: $v Entry: 7 - Data: 275|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 277|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: captureRenderer - Name: k__BackingField Entry: 7 - Data: 276|System.RuntimeType, mscorlib + Data: 278|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.MeshRenderer, UnityEngine.CoreModule @@ -5048,7 +5096,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 276 + Data: 278 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -5063,7 +5111,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 277|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 279|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5088,7 +5136,7 @@ MonoBehaviour: Data: _screenSource - Name: $v Entry: 7 - Data: 278|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 280|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _screenSource @@ -5112,7 +5160,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 279|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 281|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5137,7 +5185,7 @@ MonoBehaviour: Data: _screenMode - Name: $v Entry: 7 - Data: 280|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 282|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _screenMode @@ -5161,7 +5209,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 281|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 283|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5186,7 +5234,7 @@ MonoBehaviour: Data: _screenFit - Name: $v Entry: 7 - Data: 282|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 284|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _screenFit @@ -5210,7 +5258,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 283|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 285|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5235,7 +5283,7 @@ MonoBehaviour: Data: _inError - Name: $v Entry: 7 - Data: 284|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 286|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _inError @@ -5259,7 +5307,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 285|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 287|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5284,13 +5332,13 @@ MonoBehaviour: Data: _lastErrorCode - Name: $v Entry: 7 - Data: 286|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 288|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _lastErrorCode - Name: k__BackingField Entry: 7 - Data: 287|System.RuntimeType, mscorlib + Data: 289|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDK3.Components.Video.VideoError, VRCSDK3 @@ -5299,7 +5347,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 287 + Data: 289 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -5314,7 +5362,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 288|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 290|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5339,7 +5387,7 @@ MonoBehaviour: Data: _checkFrameCount - Name: $v Entry: 7 - Data: 289|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 291|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _checkFrameCount @@ -5363,7 +5411,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 290|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 292|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5388,13 +5436,13 @@ MonoBehaviour: Data: block - Name: $v Entry: 7 - Data: 291|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 293|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: block - Name: k__BackingField Entry: 7 - Data: 292|System.RuntimeType, mscorlib + Data: 294|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.MaterialPropertyBlock, UnityEngine.CoreModule @@ -5403,7 +5451,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 292 + Data: 294 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -5418,7 +5466,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 293|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 295|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5443,7 +5491,7 @@ MonoBehaviour: Data: pendingUpdates - Name: $v Entry: 7 - Data: 294|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 296|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: pendingUpdates @@ -5467,7 +5515,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 295|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 297|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5492,16 +5540,16 @@ MonoBehaviour: Data: currentTexture - Name: $v Entry: 7 - Data: 296|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 298|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: currentTexture - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -5516,7 +5564,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 297|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 299|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5541,16 +5589,16 @@ MonoBehaviour: Data: captureTexture - Name: $v Entry: 7 - Data: 298|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 300|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: captureTexture - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 9 - Data: 111 + Data: 113 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -5565,7 +5613,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 299|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 301|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5590,7 +5638,7 @@ MonoBehaviour: Data: currentAVPro - Name: $v Entry: 7 - Data: 300|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 302|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: currentAVPro @@ -5614,7 +5662,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 301|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 303|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5639,7 +5687,7 @@ MonoBehaviour: Data: currentInvert - Name: $v Entry: 7 - Data: 302|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 304|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: currentInvert @@ -5663,7 +5711,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 303|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 305|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5688,7 +5736,7 @@ MonoBehaviour: Data: currentGamma - Name: $v Entry: 7 - Data: 304|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 306|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: currentGamma @@ -5712,7 +5760,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 305|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 307|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5737,7 +5785,7 @@ MonoBehaviour: Data: currentFit - Name: $v Entry: 7 - Data: 306|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 308|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: currentFit @@ -5761,7 +5809,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 307|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 309|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5786,16 +5834,16 @@ MonoBehaviour: Data: currentAspectRatio - Name: $v Entry: 7 - Data: 308|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 310|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: currentAspectRatio - Name: k__BackingField Entry: 9 - Data: 106 + Data: 108 - Name: k__BackingField Entry: 9 - Data: 106 + Data: 108 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -5810,7 +5858,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 309|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 311|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5835,7 +5883,7 @@ MonoBehaviour: Data: currentValid - Name: $v Entry: 7 - Data: 310|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 312|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: currentValid @@ -5859,7 +5907,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 311|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 313|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5884,13 +5932,13 @@ MonoBehaviour: Data: currentRes - Name: $v Entry: 7 - Data: 312|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 314|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: currentRes - Name: k__BackingField Entry: 7 - Data: 313|System.RuntimeType, mscorlib + Data: 315|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.Vector2Int, UnityEngine.CoreModule @@ -5899,7 +5947,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 313 + Data: 315 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -5914,7 +5962,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 314|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 316|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5939,7 +5987,7 @@ MonoBehaviour: Data: globalTexPropertyId - Name: $v Entry: 7 - Data: 315|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 317|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: globalTexPropertyId @@ -5963,7 +6011,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 316|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 318|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5988,13 +6036,13 @@ MonoBehaviour: Data: imageDownloader - Name: $v Entry: 7 - Data: 317|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 319|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: imageDownloader - Name: k__BackingField Entry: 7 - Data: 318|System.RuntimeType, mscorlib + Data: 320|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDK3.Image.VRCImageDownloader, VRCSDK3 @@ -6003,7 +6051,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 318 + Data: 320 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -6018,7 +6066,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 319|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 321|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/Component/ScreenManager.cs b/Packages/com.texelsaur.video/Runtime/Scripts/Component/ScreenManager.cs index b5e683f..8c87cb0 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/Component/ScreenManager.cs +++ b/Packages/com.texelsaur.video/Runtime/Scripts/Component/ScreenManager.cs @@ -209,7 +209,7 @@ void Start() protected override void _Init() { - _DebugEvent("Init"); + _DebugLog("Init"); if (!videoPlayer) { @@ -278,6 +278,9 @@ protected override void _Init() if (Utilities.IsValid(debugState)) _SetDebugState(debugState); + + if (eventLogging) + eventDebugLog = debugLog; } protected override void _PostInit() @@ -692,7 +695,7 @@ void _RestoreTextureOverrides() public void _InternalOnVideoStateUpdate() { - _DebugEvent("Event OnVideoStateUpdate"); + _DebugLowLevel("Event OnVideoStateUpdate"); if (!videoPlayer) { @@ -724,7 +727,7 @@ public void _InternalOnVideoStateUpdate() public void _InternalOnSourceChanged() { - _DebugEvent("Event OnSourceChanged"); + _DebugLowLevel("Event OnSourceChanged"); if (videoPlayer && videoPlayer.VideoManager) { @@ -1274,12 +1277,6 @@ void _DebugError(string message, bool force = false) debugLog._Write("ScreenManager", message); } - void _DebugEvent(string message) - { - if (eventLogging) - _DebugLog(message); - } - void _DebugLowLevel(string message) { if (lowLevelLogging) diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/Component/VideoManager.asset b/Packages/com.texelsaur.video/Runtime/Scripts/Component/VideoManager.asset index 60624bc..82b554f 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/Component/VideoManager.asset +++ b/Packages/com.texelsaur.video/Runtime/Scripts/Component/VideoManager.asset @@ -44,7 +44,7 @@ MonoBehaviour: Data: - Name: Entry: 12 - Data: 39 + Data: 41 - Name: Entry: 7 Data: @@ -470,10 +470,70 @@ MonoBehaviour: Data: - Name: $k Entry: 1 - Data: k__BackingField + Data: eventDebugLog - Name: $v Entry: 7 Data: 24|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + - Name: k__BackingField + Entry: 1 + Data: eventDebugLog + - Name: k__BackingField + Entry: 7 + Data: 25|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: Texel.DebugLog, com.texelsaur.common + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: 26|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: VRC.Udon.UdonBehaviour, VRC.Udon + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib + - Name: + Entry: 6 + Data: + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 5 + Data: false + - Name: _fieldAttributes + Entry: 7 + Data: 27|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + - Name: + Entry: 12 + Data: 0 + - Name: + Entry: 13 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 7 + Data: + - Name: $k + Entry: 1 + Data: k__BackingField + - Name: $v + Entry: 7 + Data: 28|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -497,7 +557,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 25|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -521,13 +581,13 @@ MonoBehaviour: Data: videoPlayer - Name: $v Entry: 7 - Data: 26|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: videoPlayer - Name: k__BackingField Entry: 7 - Data: 27|System.RuntimeType, mscorlib + Data: 31|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.TXLVideoPlayer, com.texelsaur.video @@ -535,14 +595,8 @@ MonoBehaviour: Entry: 8 Data: - Name: k__BackingField - Entry: 7 - Data: 28|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: VRC.Udon.UdonBehaviour, VRC.Udon - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -557,7 +611,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -581,13 +635,13 @@ MonoBehaviour: Data: sources - Name: $v Entry: 7 - Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 33|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: sources - Name: k__BackingField Entry: 7 - Data: 31|System.RuntimeType, mscorlib + Data: 34|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.VideoSource[], com.texelsaur.video @@ -596,7 +650,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 7 - Data: 32|System.RuntimeType, mscorlib + Data: 35|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UnityEngine.Component[], UnityEngine.CoreModule @@ -617,7 +671,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 33|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 36|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -641,7 +695,7 @@ MonoBehaviour: Data: debugLogging - Name: $v Entry: 7 - Data: 34|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 37|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugLogging @@ -665,19 +719,58 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 35|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 38|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 - Data: 1 + Data: 0 + - Name: + Entry: 13 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: - Name: Entry: 7 - Data: 36|UnityEngine.HeaderAttribute, UnityEngine.CoreModule - - Name: header + Data: + - Name: $k Entry: 1 - Data: Debug + Data: eventLogging + - Name: $v + Entry: 7 + Data: 39|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + - Name: k__BackingField + Entry: 1 + Data: eventLogging + - Name: k__BackingField + Entry: 9 + Data: 17 + - Name: k__BackingField + Entry: 9 + Data: 17 + - Name: k__BackingField + Entry: 7 + Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib + - Name: + Entry: 6 + Data: - Name: Entry: 8 Data: + - Name: k__BackingField + Entry: 5 + Data: true + - Name: _fieldAttributes + Entry: 7 + Data: 40|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + - Name: + Entry: 12 + Data: 0 - Name: Entry: 13 Data: @@ -698,22 +791,16 @@ MonoBehaviour: Data: debugLog - Name: $v Entry: 7 - Data: 37|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 41|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugLog - Name: k__BackingField - Entry: 7 - Data: 38|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: Texel.DebugLog, com.texelsaur.common - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 25 - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -728,7 +815,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 39|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 42|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -752,13 +839,13 @@ MonoBehaviour: Data: debugState - Name: $v Entry: 7 - Data: 40|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 43|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugState - Name: k__BackingField Entry: 7 - Data: 41|System.RuntimeType, mscorlib + Data: 44|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.DebugState, com.texelsaur.common @@ -767,7 +854,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -782,7 +869,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 42|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 45|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -806,7 +893,7 @@ MonoBehaviour: Data: enableAVProInEditor - Name: $v Entry: 7 - Data: 43|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 46|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: enableAVProInEditor @@ -830,13 +917,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 44|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 47|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 45|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 48|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -860,13 +947,13 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 46|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 49|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField - Name: k__BackingField Entry: 7 - Data: 47|System.RuntimeType, mscorlib + Data: 50|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.VideoErrorClass, com.texelsaur.video @@ -890,7 +977,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 48|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 51|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -914,13 +1001,13 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 49|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 52|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField - Name: k__BackingField Entry: 7 - Data: 50|System.RuntimeType, mscorlib + Data: 53|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDK3.Components.Video.VideoError, VRCSDK3 @@ -929,7 +1016,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 50 + Data: 53 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -944,7 +1031,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 51|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 54|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -968,13 +1055,13 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 52|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 55|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField - Name: k__BackingField Entry: 7 - Data: 53|System.RuntimeType, mscorlib + Data: 56|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.VideoErrorTXL, com.texelsaur.video @@ -998,7 +1085,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 54|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 57|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1022,7 +1109,7 @@ MonoBehaviour: Data: activeSource - Name: $v Entry: 7 - Data: 55|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 58|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: activeSource @@ -1046,7 +1133,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 56|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 59|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1070,7 +1157,7 @@ MonoBehaviour: Data: prevSource - Name: $v Entry: 7 - Data: 57|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 60|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: prevSource @@ -1094,7 +1181,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 58|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 61|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1118,7 +1205,7 @@ MonoBehaviour: Data: nextSourceIndex - Name: $v Entry: 7 - Data: 59|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 62|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: nextSourceIndex @@ -1142,7 +1229,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 60|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 63|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1166,7 +1253,7 @@ MonoBehaviour: Data: videoType - Name: $v Entry: 7 - Data: 61|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 64|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: videoType @@ -1190,7 +1277,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 62|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 65|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1214,7 +1301,7 @@ MonoBehaviour: Data: lowLatency - Name: $v Entry: 7 - Data: 63|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 66|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: lowLatency @@ -1238,7 +1325,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 64|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 67|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1262,7 +1349,7 @@ MonoBehaviour: Data: preferredResIndex - Name: $v Entry: 7 - Data: 65|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 68|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: preferredResIndex @@ -1286,7 +1373,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 66|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 69|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1310,7 +1397,7 @@ MonoBehaviour: Data: avSyncEnabled - Name: $v Entry: 7 - Data: 67|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 70|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: avSyncEnabled @@ -1334,7 +1421,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 68|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 71|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1358,7 +1445,7 @@ MonoBehaviour: Data: loopEnabled - Name: $v Entry: 7 - Data: 69|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 72|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: loopEnabled @@ -1382,7 +1469,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 70|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 73|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1406,7 +1493,7 @@ MonoBehaviour: Data: supportedResolutions - Name: $v Entry: 7 - Data: 71|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 74|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: supportedResolutions @@ -1430,7 +1517,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 72|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 75|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1454,7 +1541,7 @@ MonoBehaviour: Data: sourceResMap - Name: $v Entry: 7 - Data: 73|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 76|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: sourceResMap @@ -1478,7 +1565,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 74|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 77|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1502,16 +1589,16 @@ MonoBehaviour: Data: unitySources - Name: $v Entry: 7 - Data: 75|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 78|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: unitySources - Name: k__BackingField Entry: 9 - Data: 31 + Data: 34 - Name: k__BackingField Entry: 9 - Data: 32 + Data: 35 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1526,7 +1613,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 76|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 79|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1550,16 +1637,16 @@ MonoBehaviour: Data: avproSources - Name: $v Entry: 7 - Data: 77|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 80|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: avproSources - Name: k__BackingField Entry: 9 - Data: 31 + Data: 34 - Name: k__BackingField Entry: 9 - Data: 32 + Data: 35 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1574,7 +1661,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 78|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 81|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1598,13 +1685,13 @@ MonoBehaviour: Data: activeVideoPlayer - Name: $v Entry: 7 - Data: 79|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 82|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: activeVideoPlayer - Name: k__BackingField Entry: 7 - Data: 80|System.RuntimeType, mscorlib + Data: 83|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDK3.Video.Components.Base.BaseVRCVideoPlayer, VRCSDK3 @@ -1613,7 +1700,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 80 + Data: 83 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1628,7 +1715,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 81|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 84|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1652,7 +1739,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 82|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 85|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1676,7 +1763,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 83|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 86|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1700,7 +1787,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 84|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 87|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1724,7 +1811,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 85|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 88|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1748,7 +1835,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 86|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 89|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1772,7 +1859,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 87|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 90|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1796,7 +1883,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 88|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 91|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1820,7 +1907,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 89|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 92|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1844,7 +1931,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 90|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 93|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1868,7 +1955,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 91|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 94|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1892,7 +1979,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 92|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 95|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1916,7 +2003,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 93|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 96|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1940,13 +2027,13 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 94|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 97|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField - Name: k__BackingField Entry: 7 - Data: 95|System.RuntimeType, mscorlib + Data: 98|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Single, mscorlib @@ -1955,7 +2042,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 95 + Data: 98 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1970,7 +2057,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 96|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 99|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1994,16 +2081,16 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 97|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 100|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField - Name: k__BackingField Entry: 9 - Data: 95 + Data: 98 - Name: k__BackingField Entry: 9 - Data: 95 + Data: 98 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2018,7 +2105,8 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 98|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 101|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + mscorlib - Name: Entry: 12 Data: 0 diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/Component/VideoManager.cs b/Packages/com.texelsaur.video/Runtime/Scripts/Component/VideoManager.cs index a4f5ebb..7b845fc 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/Component/VideoManager.cs +++ b/Packages/com.texelsaur.video/Runtime/Scripts/Component/VideoManager.cs @@ -30,8 +30,8 @@ public class VideoManager : EventBase public TXLVideoPlayer videoPlayer; public VideoSource[] sources; - [Header("Debug")] public bool debugLogging = true; + public bool eventLogging = false; public DebugLog debugLog; public DebugState debugState; @@ -137,6 +137,9 @@ protected override void _Init() if (videoPlayer) videoPlayer._SetVideoManager(this); + if (eventLogging) + eventDebugLog = debugLog; + _SetDebugState(debugState); } diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/LocalPlayer.asset b/Packages/com.texelsaur.video/Runtime/Scripts/LocalPlayer.asset index 76c33d7..34562b4 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/LocalPlayer.asset +++ b/Packages/com.texelsaur.video/Runtime/Scripts/LocalPlayer.asset @@ -44,7 +44,7 @@ MonoBehaviour: Data: - Name: Entry: 12 - Data: 58 + Data: 59 - Name: Entry: 7 Data: @@ -470,10 +470,70 @@ MonoBehaviour: Data: - Name: $k Entry: 1 - Data: k__BackingField + Data: eventDebugLog - Name: $v Entry: 7 Data: 24|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + - Name: k__BackingField + Entry: 1 + Data: eventDebugLog + - Name: k__BackingField + Entry: 7 + Data: 25|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: Texel.DebugLog, com.texelsaur.common + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: 26|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: VRC.Udon.UdonBehaviour, VRC.Udon + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib + - Name: + Entry: 6 + Data: + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 5 + Data: false + - Name: _fieldAttributes + Entry: 7 + Data: 27|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + - Name: + Entry: 12 + Data: 0 + - Name: + Entry: 13 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 7 + Data: + - Name: $k + Entry: 1 + Data: k__BackingField + - Name: $v + Entry: 7 + Data: 28|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -497,7 +557,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 25|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -521,13 +581,13 @@ MonoBehaviour: Data: videoMux - Name: $v Entry: 7 - Data: 26|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: videoMux - Name: k__BackingField Entry: 7 - Data: 27|System.RuntimeType, mscorlib + Data: 31|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.VideoManager, com.texelsaur.video @@ -535,14 +595,8 @@ MonoBehaviour: Entry: 8 Data: - Name: k__BackingField - Entry: 7 - Data: 28|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: VRC.Udon.UdonBehaviour, VRC.Udon - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -557,7 +611,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -581,13 +635,13 @@ MonoBehaviour: Data: audioManager - Name: $v Entry: 7 - Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 33|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioManager - Name: k__BackingField Entry: 7 - Data: 31|System.RuntimeType, mscorlib + Data: 34|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.AudioManager, com.texelsaur.video @@ -596,7 +650,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -611,7 +665,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 35|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -635,7 +689,7 @@ MonoBehaviour: Data: prefabInitialized - Name: $v Entry: 7 - Data: 33|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 36|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: prefabInitialized @@ -659,13 +713,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 34|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 37|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 35|UnityEngine.HideInInspector, UnityEngine.CoreModule + Data: 38|UnityEngine.HideInInspector, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -689,7 +743,7 @@ MonoBehaviour: Data: runBuildHooks - Name: $v Entry: 7 - Data: 36|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 39|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: runBuildHooks @@ -713,7 +767,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 37|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 40|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -737,13 +791,13 @@ MonoBehaviour: Data: playerSource - Name: $v Entry: 7 - Data: 38|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 41|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playerSource - Name: k__BackingField Entry: 7 - Data: 39|System.RuntimeType, mscorlib + Data: 42|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Int16, mscorlib @@ -752,7 +806,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -767,13 +821,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 40|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 43|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 41|System.NonSerializedAttribute, mscorlib + Data: 44|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -797,16 +851,16 @@ MonoBehaviour: Data: playerSourceOverride - Name: $v Entry: 7 - Data: 42|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 45|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playerSourceOverride - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -821,13 +875,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 43|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 46|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 44|System.NonSerializedAttribute, mscorlib + Data: 47|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -851,13 +905,13 @@ MonoBehaviour: Data: screenFit - Name: $v Entry: 7 - Data: 45|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 48|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: screenFit - Name: k__BackingField Entry: 7 - Data: 46|System.RuntimeType, mscorlib + Data: 49|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Byte, mscorlib @@ -866,7 +920,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 46 + Data: 49 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -881,13 +935,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 47|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 50|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 48|System.NonSerializedAttribute, mscorlib + Data: 51|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -911,7 +965,7 @@ MonoBehaviour: Data: playerState - Name: $v Entry: 7 - Data: 49|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 52|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playerState @@ -935,13 +989,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 50|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 53|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 51|System.NonSerializedAttribute, mscorlib + Data: 54|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -965,7 +1019,7 @@ MonoBehaviour: Data: paused - Name: $v Entry: 7 - Data: 52|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 55|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: paused @@ -989,13 +1043,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 53|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 56|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 54|System.NonSerializedAttribute, mscorlib + Data: 57|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1019,7 +1073,7 @@ MonoBehaviour: Data: syncing - Name: $v Entry: 7 - Data: 55|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 58|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncing @@ -1043,13 +1097,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 56|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 59|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 57|System.NonSerializedAttribute, mscorlib + Data: 60|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1073,13 +1127,13 @@ MonoBehaviour: Data: lastErrorCode - Name: $v Entry: 7 - Data: 58|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 61|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: lastErrorCode - Name: k__BackingField Entry: 7 - Data: 59|System.RuntimeType, mscorlib + Data: 62|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDK3.Components.Video.VideoError, VRCSDK3 @@ -1088,7 +1142,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 59 + Data: 62 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1103,13 +1157,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 60|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 63|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 61|System.NonSerializedAttribute, mscorlib + Data: 64|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1133,7 +1187,7 @@ MonoBehaviour: Data: streamFallback - Name: $v Entry: 7 - Data: 62|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 65|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: streamFallback @@ -1157,13 +1211,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 63|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 66|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 64|System.NonSerializedAttribute, mscorlib + Data: 67|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1187,7 +1241,7 @@ MonoBehaviour: Data: seekableSource - Name: $v Entry: 7 - Data: 65|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 68|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: seekableSource @@ -1211,13 +1265,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 66|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 69|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 67|System.NonSerializedAttribute, mscorlib + Data: 70|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1241,13 +1295,13 @@ MonoBehaviour: Data: trackDuration - Name: $v Entry: 7 - Data: 68|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 71|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: trackDuration - Name: k__BackingField Entry: 7 - Data: 69|System.RuntimeType, mscorlib + Data: 72|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Single, mscorlib @@ -1256,7 +1310,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1271,13 +1325,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 70|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 73|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 71|System.NonSerializedAttribute, mscorlib + Data: 74|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1301,16 +1355,16 @@ MonoBehaviour: Data: trackPosition - Name: $v Entry: 7 - Data: 72|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 75|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: trackPosition - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1325,13 +1379,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 73|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 76|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 74|System.NonSerializedAttribute, mscorlib + Data: 77|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1355,16 +1409,16 @@ MonoBehaviour: Data: trackTarget - Name: $v Entry: 7 - Data: 75|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 78|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: trackTarget - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1379,13 +1433,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 76|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 79|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 77|System.NonSerializedAttribute, mscorlib + Data: 80|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1409,7 +1463,7 @@ MonoBehaviour: Data: locked - Name: $v Entry: 7 - Data: 78|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 81|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: locked @@ -1433,13 +1487,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 79|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 82|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 80|System.NonSerializedAttribute, mscorlib + Data: 83|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1463,7 +1517,7 @@ MonoBehaviour: Data: repeatPlaylist - Name: $v Entry: 7 - Data: 81|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 84|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: repeatPlaylist @@ -1487,19 +1541,19 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 82|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 85|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 83|System.NonSerializedAttribute, mscorlib + Data: 86|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: - Name: Entry: 7 - Data: 84|System.ObsoleteAttribute, mscorlib + Data: 87|System.ObsoleteAttribute, mscorlib - Name: Entry: 8 Data: @@ -1523,13 +1577,13 @@ MonoBehaviour: Data: currentUrl - Name: $v Entry: 7 - Data: 85|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 88|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: currentUrl - Name: k__BackingField Entry: 7 - Data: 86|System.RuntimeType, mscorlib + Data: 89|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDKBase.VRCUrl, VRCSDKBase @@ -1538,7 +1592,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1553,13 +1607,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 87|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 90|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 88|System.NonSerializedAttribute, mscorlib + Data: 91|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1583,16 +1637,16 @@ MonoBehaviour: Data: lastUrl - Name: $v Entry: 7 - Data: 89|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 92|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: lastUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1607,13 +1661,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 90|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 93|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 91|System.NonSerializedAttribute, mscorlib + Data: 94|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1637,16 +1691,16 @@ MonoBehaviour: Data: queuedUrl - Name: $v Entry: 7 - Data: 92|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 95|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: queuedUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1661,13 +1715,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 93|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 96|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 94|System.NonSerializedAttribute, mscorlib + Data: 97|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1691,7 +1745,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 95|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 98|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1715,7 +1769,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 96|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 99|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1739,7 +1793,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 97|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 100|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1763,7 +1817,8 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 98|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 101|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + mscorlib - Name: Entry: 12 Data: 0 @@ -1787,7 +1842,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 99|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 102|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1811,7 +1866,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 100|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 103|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -1836,13 +1891,13 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 101|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 104|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField - Name: k__BackingField Entry: 7 - Data: 102|System.RuntimeType, mscorlib + Data: 105|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.TXLRepeatMode, com.texelsaur.video @@ -1851,7 +1906,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 46 + Data: 49 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1866,7 +1921,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 103|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 106|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -1891,13 +1946,13 @@ MonoBehaviour: Data: audioLink - Name: $v Entry: 7 - Data: 104|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 107|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioLink - Name: k__BackingField Entry: 7 - Data: 105|System.RuntimeType, mscorlib + Data: 108|System.RuntimeType, mscorlib - Name: Entry: 1 Data: AudioLink.AudioLink, AudioLink @@ -1906,7 +1961,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1921,7 +1976,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 106|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 109|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -1946,13 +2001,13 @@ MonoBehaviour: Data: urlRemapper - Name: $v Entry: 7 - Data: 107|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 110|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: urlRemapper - Name: k__BackingField Entry: 7 - Data: 108|System.RuntimeType, mscorlib + Data: 111|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.UrlRemapper, com.texelsaur.video @@ -1961,7 +2016,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1976,14 +2031,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 109|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 112|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 110|UnityEngine.HeaderAttribute, UnityEngine.CoreModule + Data: 113|UnityEngine.HeaderAttribute, UnityEngine.CoreModule - Name: header Entry: 1 Data: Optional Components @@ -1992,7 +2047,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 111|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 114|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Set of input URLs to remap to alternate URLs on a per-platform basis @@ -2019,13 +2074,13 @@ MonoBehaviour: Data: dependentSource - Name: $v Entry: 7 - Data: 112|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 115|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: dependentSource - Name: k__BackingField Entry: 7 - Data: 113|System.RuntimeType, mscorlib + Data: 116|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.DependentSource, com.texelsaur.video @@ -2034,7 +2089,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2049,14 +2104,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 114|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 117|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 115|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 118|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Component that ties this video player to primary video player, loading @@ -2084,22 +2139,16 @@ MonoBehaviour: Data: debugLog - Name: $v Entry: 7 - Data: 116|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 119|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugLog - Name: k__BackingField - Entry: 7 - Data: 117|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: Texel.DebugLog, com.texelsaur.common - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 25 - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2114,14 +2163,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 118|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 120|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 119|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 121|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Log debug statements to a world object @@ -2148,13 +2197,13 @@ MonoBehaviour: Data: playbackZone - Name: $v Entry: 7 - Data: 120|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 122|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playbackZone - Name: k__BackingField Entry: 7 - Data: 121|System.RuntimeType, mscorlib + Data: 123|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.ZoneTrigger, com.texelsaur.common @@ -2163,7 +2212,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2178,14 +2227,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 122|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 124|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 123|UnityEngine.HeaderAttribute, UnityEngine.CoreModule + Data: 125|UnityEngine.HeaderAttribute, UnityEngine.CoreModule - Name: header Entry: 1 Data: Playback @@ -2194,7 +2243,7 @@ MonoBehaviour: Data: - Name: Entry: 7 - Data: 124|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 126|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Optional trigger zone the player must be in to sustain playback. Disables @@ -2222,16 +2271,16 @@ MonoBehaviour: Data: triggerZone - Name: $v Entry: 7 - Data: 125|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 127|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: triggerZone - Name: k__BackingField Entry: 9 - Data: 121 + Data: 123 - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2246,14 +2295,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 126|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 128|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 127|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 129|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Optional trigger zone that will start playback if player enters. @@ -2280,7 +2329,7 @@ MonoBehaviour: Data: playOnJoin - Name: $v Entry: 7 - Data: 128|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 130|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playOnJoin @@ -2304,14 +2353,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 129|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 131|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 130|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 132|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Starts playback when player joins world. Any defined playback zone will @@ -2339,13 +2388,13 @@ MonoBehaviour: Data: staticUrlSource - Name: $v Entry: 7 - Data: 131|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 133|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: staticUrlSource - Name: k__BackingField Entry: 7 - Data: 132|System.RuntimeType, mscorlib + Data: 134|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.StaticUrlSource, com.texelsaur.video @@ -2354,7 +2403,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2369,14 +2418,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 133|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 135|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 134|UnityEngine.HeaderAttribute, UnityEngine.CoreModule + Data: 136|UnityEngine.HeaderAttribute, UnityEngine.CoreModule - Name: header Entry: 1 Data: Default Options @@ -2403,16 +2452,16 @@ MonoBehaviour: Data: streamUrl - Name: $v Entry: 7 - Data: 135|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 137|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: streamUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2427,7 +2476,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 136|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 138|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2452,13 +2501,13 @@ MonoBehaviour: Data: defaultScreenFit - Name: $v Entry: 7 - Data: 137|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 139|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: defaultScreenFit - Name: k__BackingField Entry: 7 - Data: 138|System.RuntimeType, mscorlib + Data: 140|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.TXLScreenFit, com.texelsaur.video @@ -2467,7 +2516,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 46 + Data: 49 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2482,14 +2531,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 139|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 141|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 140|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 142|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: How content not matching a screen's aspect ratio should be fit by default. @@ -2517,7 +2566,7 @@ MonoBehaviour: Data: debugLogging - Name: $v Entry: 7 - Data: 141|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 143|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugLogging @@ -2541,14 +2590,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 142|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 144|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 143|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 145|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Write out video player events to VRChat log @@ -2575,7 +2624,7 @@ MonoBehaviour: Data: loop - Name: $v Entry: 7 - Data: 144|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 146|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: loop @@ -2599,14 +2648,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 145|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 147|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 146|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 148|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Automatically loop track when finished @@ -2633,7 +2682,7 @@ MonoBehaviour: Data: resumePosition - Name: $v Entry: 7 - Data: 147|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 149|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: resumePosition @@ -2657,14 +2706,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 148|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 150|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 149|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 151|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Remember where video was stopped and resume at that position when re-triggered @@ -2691,7 +2740,7 @@ MonoBehaviour: Data: retryOnError - Name: $v Entry: 7 - Data: 150|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 152|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: retryOnError @@ -2715,14 +2764,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 151|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 153|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 152|UnityEngine.TooltipAttribute, UnityEngine.CoreModule + Data: 154|UnityEngine.TooltipAttribute, UnityEngine.CoreModule - Name: tooltip Entry: 1 Data: Whether to keep playing the same URL if an error occurs @@ -2749,16 +2798,16 @@ MonoBehaviour: Data: retryTimeout - Name: $v Entry: 7 - Data: 153|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 155|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: retryTimeout - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2773,7 +2822,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 154|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 156|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2798,7 +2847,7 @@ MonoBehaviour: Data: _hasSustainZone - Name: $v Entry: 7 - Data: 155|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 157|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _hasSustainZone @@ -2822,7 +2871,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 156|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 158|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2847,7 +2896,7 @@ MonoBehaviour: Data: _inSustainZone - Name: $v Entry: 7 - Data: 157|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 159|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _inSustainZone @@ -2871,7 +2920,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 158|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 160|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2896,7 +2945,7 @@ MonoBehaviour: Data: _triggerZoneSame - Name: $v Entry: 7 - Data: 159|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 161|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _triggerZoneSame @@ -2920,7 +2969,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 160|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 162|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2945,7 +2994,7 @@ MonoBehaviour: Data: _isStreamPlayer - Name: $v Entry: 7 - Data: 161|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 163|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _isStreamPlayer @@ -2969,7 +3018,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 162|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 164|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2994,7 +3043,7 @@ MonoBehaviour: Data: _urlSourceType - Name: $v Entry: 7 - Data: 163|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 165|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _urlSourceType @@ -3018,7 +3067,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 164|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 166|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3043,16 +3092,16 @@ MonoBehaviour: Data: _lastVideoPosition - Name: $v Entry: 7 - Data: 165|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 167|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _lastVideoPosition - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3067,7 +3116,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 166|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 168|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3092,16 +3141,16 @@ MonoBehaviour: Data: playAtUrl - Name: $v Entry: 7 - Data: 167|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 169|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playAtUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3116,7 +3165,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 168|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 170|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3141,16 +3190,16 @@ MonoBehaviour: Data: playAt - Name: $v Entry: 7 - Data: 169|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 171|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playAt - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3165,7 +3214,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 170|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 172|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3190,16 +3239,16 @@ MonoBehaviour: Data: playStartTime - Name: $v Entry: 7 - Data: 171|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 173|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playStartTime - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3214,7 +3263,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 172|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 174|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/SyncPlayer.asset b/Packages/com.texelsaur.video/Runtime/Scripts/SyncPlayer.asset index fbfbe59..d6c8cdd 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/SyncPlayer.asset +++ b/Packages/com.texelsaur.video/Runtime/Scripts/SyncPlayer.asset @@ -44,7 +44,7 @@ MonoBehaviour: Data: - Name: Entry: 12 - Data: 98 + Data: 99 - Name: Entry: 7 Data: @@ -470,10 +470,70 @@ MonoBehaviour: Data: - Name: $k Entry: 1 - Data: k__BackingField + Data: eventDebugLog - Name: $v Entry: 7 Data: 24|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + - Name: k__BackingField + Entry: 1 + Data: eventDebugLog + - Name: k__BackingField + Entry: 7 + Data: 25|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: Texel.DebugLog, com.texelsaur.common + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: 26|System.RuntimeType, mscorlib + - Name: + Entry: 1 + Data: VRC.Udon.UdonBehaviour, VRC.Udon + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 7 + Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib + - Name: + Entry: 6 + Data: + - Name: + Entry: 8 + Data: + - Name: k__BackingField + Entry: 5 + Data: false + - Name: _fieldAttributes + Entry: 7 + Data: 27|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + - Name: + Entry: 12 + Data: 0 + - Name: + Entry: 13 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 8 + Data: + - Name: + Entry: 7 + Data: + - Name: $k + Entry: 1 + Data: k__BackingField + - Name: $v + Entry: 7 + Data: 28|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -497,7 +557,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 25|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -521,13 +581,13 @@ MonoBehaviour: Data: videoMux - Name: $v Entry: 7 - Data: 26|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: videoMux - Name: k__BackingField Entry: 7 - Data: 27|System.RuntimeType, mscorlib + Data: 31|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.VideoManager, com.texelsaur.video @@ -535,14 +595,8 @@ MonoBehaviour: Entry: 8 Data: - Name: k__BackingField - Entry: 7 - Data: 28|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: VRC.Udon.UdonBehaviour, VRC.Udon - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -557,7 +611,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 29|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -581,13 +635,13 @@ MonoBehaviour: Data: audioManager - Name: $v Entry: 7 - Data: 30|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 33|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioManager - Name: k__BackingField Entry: 7 - Data: 31|System.RuntimeType, mscorlib + Data: 34|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.AudioManager, com.texelsaur.video @@ -596,7 +650,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -611,7 +665,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 32|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 35|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -635,7 +689,7 @@ MonoBehaviour: Data: prefabInitialized - Name: $v Entry: 7 - Data: 33|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 36|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: prefabInitialized @@ -659,13 +713,13 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 34|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 37|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 35|UnityEngine.HideInInspector, UnityEngine.CoreModule + Data: 38|UnityEngine.HideInInspector, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -689,7 +743,7 @@ MonoBehaviour: Data: runBuildHooks - Name: $v Entry: 7 - Data: 36|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 39|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: runBuildHooks @@ -713,7 +767,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 37|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 40|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -737,13 +791,13 @@ MonoBehaviour: Data: playerSource - Name: $v Entry: 7 - Data: 38|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 41|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playerSource - Name: k__BackingField Entry: 7 - Data: 39|System.RuntimeType, mscorlib + Data: 42|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Int16, mscorlib @@ -752,7 +806,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -767,13 +821,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 40|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 43|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 41|System.NonSerializedAttribute, mscorlib + Data: 44|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -797,16 +851,16 @@ MonoBehaviour: Data: playerSourceOverride - Name: $v Entry: 7 - Data: 42|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 45|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playerSourceOverride - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -821,13 +875,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 43|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 46|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 44|System.NonSerializedAttribute, mscorlib + Data: 47|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -851,13 +905,13 @@ MonoBehaviour: Data: screenFit - Name: $v Entry: 7 - Data: 45|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 48|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: screenFit - Name: k__BackingField Entry: 7 - Data: 46|System.RuntimeType, mscorlib + Data: 49|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Byte, mscorlib @@ -866,7 +920,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 46 + Data: 49 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -881,13 +935,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 47|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 50|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 48|System.NonSerializedAttribute, mscorlib + Data: 51|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -911,7 +965,7 @@ MonoBehaviour: Data: playerState - Name: $v Entry: 7 - Data: 49|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 52|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playerState @@ -935,13 +989,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 50|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 53|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 51|System.NonSerializedAttribute, mscorlib + Data: 54|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -965,7 +1019,7 @@ MonoBehaviour: Data: paused - Name: $v Entry: 7 - Data: 52|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 55|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: paused @@ -989,13 +1043,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 53|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 56|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 54|System.NonSerializedAttribute, mscorlib + Data: 57|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1019,7 +1073,7 @@ MonoBehaviour: Data: syncing - Name: $v Entry: 7 - Data: 55|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 58|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncing @@ -1043,13 +1097,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 56|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 59|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 57|System.NonSerializedAttribute, mscorlib + Data: 60|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1073,13 +1127,13 @@ MonoBehaviour: Data: lastErrorCode - Name: $v Entry: 7 - Data: 58|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 61|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: lastErrorCode - Name: k__BackingField Entry: 7 - Data: 59|System.RuntimeType, mscorlib + Data: 62|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDK3.Components.Video.VideoError, VRCSDK3 @@ -1088,7 +1142,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 59 + Data: 62 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1103,13 +1157,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 60|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 63|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 61|System.NonSerializedAttribute, mscorlib + Data: 64|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1133,7 +1187,7 @@ MonoBehaviour: Data: streamFallback - Name: $v Entry: 7 - Data: 62|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 65|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: streamFallback @@ -1157,13 +1211,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 63|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 66|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 64|System.NonSerializedAttribute, mscorlib + Data: 67|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1187,7 +1241,7 @@ MonoBehaviour: Data: seekableSource - Name: $v Entry: 7 - Data: 65|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 68|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: seekableSource @@ -1211,13 +1265,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 66|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 69|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 67|System.NonSerializedAttribute, mscorlib + Data: 70|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1241,13 +1295,13 @@ MonoBehaviour: Data: trackDuration - Name: $v Entry: 7 - Data: 68|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 71|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: trackDuration - Name: k__BackingField Entry: 7 - Data: 69|System.RuntimeType, mscorlib + Data: 72|System.RuntimeType, mscorlib - Name: Entry: 1 Data: System.Single, mscorlib @@ -1256,7 +1310,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1271,13 +1325,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 70|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 73|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 71|System.NonSerializedAttribute, mscorlib + Data: 74|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1301,16 +1355,16 @@ MonoBehaviour: Data: trackPosition - Name: $v Entry: 7 - Data: 72|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 75|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: trackPosition - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1325,13 +1379,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 73|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 76|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 74|System.NonSerializedAttribute, mscorlib + Data: 77|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1355,16 +1409,16 @@ MonoBehaviour: Data: trackTarget - Name: $v Entry: 7 - Data: 75|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 78|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: trackTarget - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1379,13 +1433,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 76|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 79|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 77|System.NonSerializedAttribute, mscorlib + Data: 80|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1409,7 +1463,7 @@ MonoBehaviour: Data: locked - Name: $v Entry: 7 - Data: 78|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 81|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: locked @@ -1433,13 +1487,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 79|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 82|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 80|System.NonSerializedAttribute, mscorlib + Data: 83|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1463,7 +1517,7 @@ MonoBehaviour: Data: repeatPlaylist - Name: $v Entry: 7 - Data: 81|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 84|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: repeatPlaylist @@ -1487,19 +1541,19 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 82|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 85|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 83|System.NonSerializedAttribute, mscorlib + Data: 86|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: - Name: Entry: 7 - Data: 84|System.ObsoleteAttribute, mscorlib + Data: 87|System.ObsoleteAttribute, mscorlib - Name: Entry: 8 Data: @@ -1523,13 +1577,13 @@ MonoBehaviour: Data: currentUrl - Name: $v Entry: 7 - Data: 85|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 88|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: currentUrl - Name: k__BackingField Entry: 7 - Data: 86|System.RuntimeType, mscorlib + Data: 89|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDKBase.VRCUrl, VRCSDKBase @@ -1538,7 +1592,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1553,13 +1607,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 87|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 90|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 88|System.NonSerializedAttribute, mscorlib + Data: 91|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1583,16 +1637,16 @@ MonoBehaviour: Data: lastUrl - Name: $v Entry: 7 - Data: 89|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 92|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: lastUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1607,13 +1661,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 90|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 93|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 91|System.NonSerializedAttribute, mscorlib + Data: 94|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1637,16 +1691,16 @@ MonoBehaviour: Data: queuedUrl - Name: $v Entry: 7 - Data: 92|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 95|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: queuedUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1661,13 +1715,13 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 93|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 96|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 94|System.NonSerializedAttribute, mscorlib + Data: 97|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -1691,7 +1745,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 95|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 98|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1715,7 +1769,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 96|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 99|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 0 @@ -1739,7 +1793,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 97|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 100|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1763,7 +1817,8 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 98|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib + Data: 101|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + mscorlib - Name: Entry: 12 Data: 0 @@ -1787,7 +1842,7 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 99|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 102|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField @@ -1811,7 +1866,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 100|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 103|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -1836,13 +1891,13 @@ MonoBehaviour: Data: k__BackingField - Name: $v Entry: 7 - Data: 101|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 104|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: k__BackingField - Name: k__BackingField Entry: 7 - Data: 102|System.RuntimeType, mscorlib + Data: 105|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.TXLRepeatMode, com.texelsaur.video @@ -1851,7 +1906,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 46 + Data: 49 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1866,7 +1921,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 103|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 106|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -1891,13 +1946,13 @@ MonoBehaviour: Data: audioLink - Name: $v Entry: 7 - Data: 104|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 107|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: audioLink - Name: k__BackingField Entry: 7 - Data: 105|System.RuntimeType, mscorlib + Data: 108|System.RuntimeType, mscorlib - Name: Entry: 1 Data: AudioLink.AudioLink, AudioLink @@ -1906,7 +1961,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -1921,7 +1976,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 106|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 109|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -1946,13 +2001,13 @@ MonoBehaviour: Data: defaultUrlSourceType - Name: $v Entry: 7 - Data: 107|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 110|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: defaultUrlSourceType - Name: k__BackingField Entry: 7 - Data: 108|System.RuntimeType, mscorlib + Data: 111|System.RuntimeType, mscorlib - Name: Entry: 1 Data: UrlSourceType, com.texelsaur.video @@ -1976,14 +2031,14 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 109|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 112|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 110|UnityEngine.SerializeField, UnityEngine.CoreModule + Data: 113|UnityEngine.SerializeField, UnityEngine.CoreModule - Name: Entry: 8 Data: @@ -2007,13 +2062,13 @@ MonoBehaviour: Data: urlSource - Name: $v Entry: 7 - Data: 111|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 114|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: urlSource - Name: k__BackingField Entry: 7 - Data: 112|System.RuntimeType, mscorlib + Data: 115|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.VideoUrlSource, com.texelsaur.video @@ -2022,7 +2077,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2037,7 +2092,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 113|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 116|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2062,13 +2117,13 @@ MonoBehaviour: Data: urlRemapper - Name: $v Entry: 7 - Data: 114|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 117|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: urlRemapper - Name: k__BackingField Entry: 7 - Data: 115|System.RuntimeType, mscorlib + Data: 118|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.UrlRemapper, com.texelsaur.video @@ -2077,7 +2132,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2092,7 +2147,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 116|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 119|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2117,13 +2172,13 @@ MonoBehaviour: Data: accessControl - Name: $v Entry: 7 - Data: 117|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 120|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: accessControl - Name: k__BackingField Entry: 7 - Data: 118|System.RuntimeType, mscorlib + Data: 121|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.AccessControl, com.texelsaur.common @@ -2132,7 +2187,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2147,7 +2202,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 119|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 122|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2172,13 +2227,13 @@ MonoBehaviour: Data: playbackZone - Name: $v Entry: 7 - Data: 120|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 123|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playbackZone - Name: k__BackingField Entry: 7 - Data: 121|System.RuntimeType, mscorlib + Data: 124|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.CompoundZoneTrigger, com.texelsaur.common @@ -2187,7 +2242,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2202,7 +2257,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 122|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 125|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2227,13 +2282,13 @@ MonoBehaviour: Data: playbackZoneMembership - Name: $v Entry: 7 - Data: 123|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 126|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playbackZoneMembership - Name: k__BackingField Entry: 7 - Data: 124|System.RuntimeType, mscorlib + Data: 127|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.ZoneMembership, com.texelsaur.common @@ -2242,7 +2297,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2257,7 +2312,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 125|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 128|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2282,16 +2337,16 @@ MonoBehaviour: Data: defaultUrl - Name: $v Entry: 7 - Data: 126|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 129|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: defaultUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2306,7 +2361,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 127|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 130|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2331,16 +2386,16 @@ MonoBehaviour: Data: defaultQuestUrl - Name: $v Entry: 7 - Data: 128|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 131|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: defaultQuestUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2355,7 +2410,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 129|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 132|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2380,7 +2435,7 @@ MonoBehaviour: Data: defaultLocked - Name: $v Entry: 7 - Data: 130|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 133|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: defaultLocked @@ -2404,7 +2459,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 131|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 134|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2429,7 +2484,7 @@ MonoBehaviour: Data: loop - Name: $v Entry: 7 - Data: 132|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 135|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: loop @@ -2453,7 +2508,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 133|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 136|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2478,7 +2533,7 @@ MonoBehaviour: Data: retryOnError - Name: $v Entry: 7 - Data: 134|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 137|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: retryOnError @@ -2502,7 +2557,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 135|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 138|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2527,7 +2582,7 @@ MonoBehaviour: Data: autoFailbackToAVPro - Name: $v Entry: 7 - Data: 136|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 139|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: autoFailbackToAVPro @@ -2551,7 +2606,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 137|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 140|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2576,7 +2631,7 @@ MonoBehaviour: Data: holdLoadedVideos - Name: $v Entry: 7 - Data: 138|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 141|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: holdLoadedVideos @@ -2600,7 +2655,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 139|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 142|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2625,16 +2680,16 @@ MonoBehaviour: Data: syncFrequency - Name: $v Entry: 7 - Data: 140|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 143|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncFrequency - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2649,7 +2704,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 141|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 144|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2674,16 +2729,16 @@ MonoBehaviour: Data: syncThreshold - Name: $v Entry: 7 - Data: 142|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 145|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncThreshold - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2698,7 +2753,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 143|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 146|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2723,7 +2778,7 @@ MonoBehaviour: Data: autoInternalAVSync - Name: $v Entry: 7 - Data: 144|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 147|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: autoInternalAVSync @@ -2747,7 +2802,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 145|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 148|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2772,13 +2827,13 @@ MonoBehaviour: Data: defaultScreenFit - Name: $v Entry: 7 - Data: 146|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 149|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: defaultScreenFit - Name: k__BackingField Entry: 7 - Data: 147|System.RuntimeType, mscorlib + Data: 150|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.TXLScreenFit, com.texelsaur.video @@ -2787,7 +2842,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 46 + Data: 49 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2802,7 +2857,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 148|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 151|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2827,16 +2882,16 @@ MonoBehaviour: Data: defaultVideoSource - Name: $v Entry: 7 - Data: 149|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 152|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: defaultVideoSource - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2851,7 +2906,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 150|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 153|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2876,7 +2931,7 @@ MonoBehaviour: Data: debugLogging - Name: $v Entry: 7 - Data: 151|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 154|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugLogging @@ -2900,7 +2955,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 152|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 155|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2925,22 +2980,16 @@ MonoBehaviour: Data: debugLog - Name: $v Entry: 7 - Data: 153|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 156|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugLog - Name: k__BackingField - Entry: 7 - Data: 154|System.RuntimeType, mscorlib - - Name: - Entry: 1 - Data: Texel.DebugLog, com.texelsaur.common - - Name: - Entry: 8 - Data: + Entry: 9 + Data: 25 - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -2955,7 +3004,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 155|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 157|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -2980,13 +3029,13 @@ MonoBehaviour: Data: debugState - Name: $v Entry: 7 - Data: 156|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 158|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: debugState - Name: k__BackingField Entry: 7 - Data: 157|System.RuntimeType, mscorlib + Data: 159|System.RuntimeType, mscorlib - Name: Entry: 1 Data: Texel.DebugState, com.texelsaur.common @@ -2995,7 +3044,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 28 + Data: 26 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3010,7 +3059,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 158|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 160|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3035,7 +3084,7 @@ MonoBehaviour: Data: eventLogging - Name: $v Entry: 7 - Data: 159|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 161|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: eventLogging @@ -3059,7 +3108,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 160|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 162|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3084,7 +3133,7 @@ MonoBehaviour: Data: traceLogging - Name: $v Entry: 7 - Data: 161|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 163|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: traceLogging @@ -3108,7 +3157,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 162|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 164|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3133,16 +3182,16 @@ MonoBehaviour: Data: retryTimeout - Name: $v Entry: 7 - Data: 163|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 165|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: retryTimeout - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3157,7 +3206,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 164|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 166|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3182,16 +3231,16 @@ MonoBehaviour: Data: _syncVideoSource - Name: $v Entry: 7 - Data: 165|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 167|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncVideoSource - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3206,14 +3255,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 166|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 168|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 167|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 169|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -3237,16 +3286,16 @@ MonoBehaviour: Data: _syncVideoSourceOverride - Name: $v Entry: 7 - Data: 168|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 170|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncVideoSourceOverride - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3261,14 +3310,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 169|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 171|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 170|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 172|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -3292,16 +3341,16 @@ MonoBehaviour: Data: fallbackSourceOverride - Name: $v Entry: 7 - Data: 171|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 173|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: fallbackSourceOverride - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 9 - Data: 39 + Data: 42 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3316,7 +3365,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 172|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 174|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3341,16 +3390,16 @@ MonoBehaviour: Data: _syncScreenFit - Name: $v Entry: 7 - Data: 173|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 175|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncScreenFit - Name: k__BackingField Entry: 9 - Data: 46 + Data: 49 - Name: k__BackingField Entry: 9 - Data: 46 + Data: 49 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3365,14 +3414,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 174|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 176|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 175|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 177|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -3396,16 +3445,16 @@ MonoBehaviour: Data: _syncUrl - Name: $v Entry: 7 - Data: 176|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 178|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3420,14 +3469,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 177|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 179|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 178|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 180|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -3451,16 +3500,16 @@ MonoBehaviour: Data: _syncQueuedUrl - Name: $v Entry: 7 - Data: 179|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 181|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncQueuedUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3475,14 +3524,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 180|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 182|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 181|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 183|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -3506,16 +3555,16 @@ MonoBehaviour: Data: _syncQuestUrl - Name: $v Entry: 7 - Data: 182|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 184|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncQuestUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3530,14 +3579,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 183|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 185|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 184|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 186|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -3561,16 +3610,16 @@ MonoBehaviour: Data: _preResolvedUrl - Name: $v Entry: 7 - Data: 185|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 187|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _preResolvedUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3585,7 +3634,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 186|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 188|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3610,16 +3659,16 @@ MonoBehaviour: Data: _resolvedUrl - Name: $v Entry: 7 - Data: 187|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 189|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _resolvedUrl - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 9 - Data: 86 + Data: 89 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3634,7 +3683,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 188|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 190|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3659,7 +3708,7 @@ MonoBehaviour: Data: _syncVideoNumber - Name: $v Entry: 7 - Data: 189|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 191|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncVideoNumber @@ -3683,14 +3732,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 190|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 192|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 191|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 193|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -3714,7 +3763,7 @@ MonoBehaviour: Data: _loadedVideoNumber - Name: $v Entry: 7 - Data: 192|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 194|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _loadedVideoNumber @@ -3738,7 +3787,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 193|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 195|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -3763,7 +3812,7 @@ MonoBehaviour: Data: _syncPlaybackNumber - Name: $v Entry: 7 - Data: 194|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 196|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncPlaybackNumber @@ -3787,14 +3836,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 195|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 197|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 196|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 198|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -3818,7 +3867,7 @@ MonoBehaviour: Data: _syncOwnerPlaying - Name: $v Entry: 7 - Data: 197|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 199|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncOwnerPlaying @@ -3842,20 +3891,20 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 198|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 200|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 199|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 201|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: - Name: Entry: 7 - Data: 200|System.NonSerializedAttribute, mscorlib + Data: 202|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -3879,7 +3928,7 @@ MonoBehaviour: Data: _syncOwnerPaused - Name: $v Entry: 7 - Data: 201|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 203|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncOwnerPaused @@ -3903,20 +3952,20 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 202|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 204|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 203|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 205|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: - Name: Entry: 7 - Data: 204|System.NonSerializedAttribute, mscorlib + Data: 206|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -3940,16 +3989,16 @@ MonoBehaviour: Data: _syncVideoStartNetworkTime - Name: $v Entry: 7 - Data: 205|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 207|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncVideoStartNetworkTime - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -3964,14 +4013,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 206|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 208|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 207|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 209|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -3995,16 +4044,16 @@ MonoBehaviour: Data: _syncVideoExpectedEndTime - Name: $v Entry: 7 - Data: 208|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 210|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncVideoExpectedEndTime - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4019,14 +4068,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 209|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 211|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 210|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 212|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -4050,7 +4099,7 @@ MonoBehaviour: Data: _syncLocked - Name: $v Entry: 7 - Data: 211|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 213|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncLocked @@ -4074,14 +4123,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 212|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 214|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 213|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 215|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -4105,16 +4154,16 @@ MonoBehaviour: Data: syncRepeatMode - Name: $v Entry: 7 - Data: 214|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 216|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: syncRepeatMode - Name: k__BackingField Entry: 9 - Data: 102 + Data: 105 - Name: k__BackingField Entry: 9 - Data: 46 + Data: 49 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4129,20 +4178,20 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 215|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 217|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 216|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 218|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: - Name: Entry: 7 - Data: 217|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime + Data: 219|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -4166,7 +4215,7 @@ MonoBehaviour: Data: _syncHoldVideos - Name: $v Entry: 7 - Data: 218|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 220|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _syncHoldVideos @@ -4190,20 +4239,20 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 219|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 221|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 2 - Name: Entry: 7 - Data: 220|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime + Data: 222|UdonSharp.UdonSyncedAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: - Name: Entry: 7 - Data: 221|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime + Data: 223|UdonSharp.FieldChangeCallbackAttribute, UdonSharp.Runtime - Name: Entry: 8 Data: @@ -4227,13 +4276,13 @@ MonoBehaviour: Data: playerArg - Name: $v Entry: 7 - Data: 222|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 224|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: playerArg - Name: k__BackingField Entry: 7 - Data: 223|System.RuntimeType, mscorlib + Data: 225|System.RuntimeType, mscorlib - Name: Entry: 1 Data: VRC.SDKBase.VRCPlayerApi, VRCSDKBase @@ -4242,7 +4291,7 @@ MonoBehaviour: Data: - Name: k__BackingField Entry: 9 - Data: 223 + Data: 225 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4257,14 +4306,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 224|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 226|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 225|System.NonSerializedAttribute, mscorlib + Data: 227|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -4288,16 +4337,16 @@ MonoBehaviour: Data: _lastVideoPosition - Name: $v Entry: 7 - Data: 226|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 228|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _lastVideoPosition - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4312,7 +4361,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 227|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 229|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4337,16 +4386,16 @@ MonoBehaviour: Data: _videoTargetTime - Name: $v Entry: 7 - Data: 228|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 230|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _videoTargetTime - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4361,7 +4410,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 229|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 231|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4386,7 +4435,7 @@ MonoBehaviour: Data: _waitForSync - Name: $v Entry: 7 - Data: 230|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 232|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _waitForSync @@ -4410,7 +4459,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 231|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 233|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4435,7 +4484,7 @@ MonoBehaviour: Data: _holdReadyState - Name: $v Entry: 7 - Data: 232|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 234|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _holdReadyState @@ -4459,7 +4508,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 233|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 235|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4484,7 +4533,7 @@ MonoBehaviour: Data: _heldVideoReady - Name: $v Entry: 7 - Data: 234|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 236|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _heldVideoReady @@ -4508,7 +4557,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 235|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 237|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4533,7 +4582,7 @@ MonoBehaviour: Data: _skipAdvanceNextTrack - Name: $v Entry: 7 - Data: 236|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 238|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _skipAdvanceNextTrack @@ -4557,7 +4606,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 237|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 239|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4582,16 +4631,16 @@ MonoBehaviour: Data: _lastSyncTime - Name: $v Entry: 7 - Data: 238|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 240|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _lastSyncTime - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4606,7 +4655,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 239|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 241|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4631,16 +4680,16 @@ MonoBehaviour: Data: _playStartTime - Name: $v Entry: 7 - Data: 240|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 242|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _playStartTime - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4655,7 +4704,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 241|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 243|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4680,7 +4729,7 @@ MonoBehaviour: Data: _overrideLock - Name: $v Entry: 7 - Data: 242|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 244|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _overrideLock @@ -4704,7 +4753,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 243|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 245|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4729,7 +4778,7 @@ MonoBehaviour: Data: _suppressSourceUpdate - Name: $v Entry: 7 - Data: 244|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 246|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _suppressSourceUpdate @@ -4753,7 +4802,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 245|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 247|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4778,7 +4827,7 @@ MonoBehaviour: Data: _videoReady - Name: $v Entry: 7 - Data: 246|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 248|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _videoReady @@ -4802,7 +4851,7 @@ MonoBehaviour: Data: true - Name: _fieldAttributes Entry: 7 - Data: 247|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 249|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4827,16 +4876,16 @@ MonoBehaviour: Data: _pendingLoadTime - Name: $v Entry: 7 - Data: 248|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 250|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _pendingLoadTime - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -4851,7 +4900,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 249|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 251|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4876,7 +4925,7 @@ MonoBehaviour: Data: _hasAccessControl - Name: $v Entry: 7 - Data: 250|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 252|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _hasAccessControl @@ -4900,7 +4949,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 251|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 253|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4925,7 +4974,7 @@ MonoBehaviour: Data: _hasSustainZone - Name: $v Entry: 7 - Data: 252|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 254|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _hasSustainZone @@ -4949,7 +4998,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 253|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 255|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -4974,7 +5023,7 @@ MonoBehaviour: Data: _inSustainZone - Name: $v Entry: 7 - Data: 254|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 256|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _inSustainZone @@ -4998,7 +5047,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 255|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 257|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5023,7 +5072,7 @@ MonoBehaviour: Data: _initDeserialize - Name: $v Entry: 7 - Data: 256|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 258|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: _initDeserialize @@ -5047,7 +5096,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 257|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 259|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5072,16 +5121,16 @@ MonoBehaviour: Data: previousTrackPosition - Name: $v Entry: 7 - Data: 258|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 260|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: previousTrackPosition - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -5096,14 +5145,14 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 259|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 261|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 Data: 1 - Name: Entry: 7 - Data: 260|System.NonSerializedAttribute, mscorlib + Data: 262|System.NonSerializedAttribute, mscorlib - Name: Entry: 8 Data: @@ -5127,16 +5176,16 @@ MonoBehaviour: Data: previousCurrent - Name: $v Entry: 7 - Data: 261|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 263|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: previousCurrent - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -5151,7 +5200,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 262|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 264|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 @@ -5176,16 +5225,16 @@ MonoBehaviour: Data: previousTarget - Name: $v Entry: 7 - Data: 263|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor + Data: 265|UdonSharp.Compiler.FieldDefinition, UdonSharp.Editor - Name: k__BackingField Entry: 1 Data: previousTarget - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 9 - Data: 69 + Data: 72 - Name: k__BackingField Entry: 7 Data: System.Nullable`1[[UdonSharp.UdonSyncMode, UdonSharp.Runtime]], mscorlib @@ -5200,7 +5249,7 @@ MonoBehaviour: Data: false - Name: _fieldAttributes Entry: 7 - Data: 264|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], + Data: 266|System.Collections.Generic.List`1[[System.Attribute, mscorlib]], mscorlib - Name: Entry: 12 diff --git a/Packages/com.texelsaur.video/Runtime/Scripts/SyncPlayer.cs b/Packages/com.texelsaur.video/Runtime/Scripts/SyncPlayer.cs index 476e2e6..9185bbf 100644 --- a/Packages/com.texelsaur.video/Runtime/Scripts/SyncPlayer.cs +++ b/Packages/com.texelsaur.video/Runtime/Scripts/SyncPlayer.cs @@ -129,7 +129,7 @@ public class SyncPlayer : TXLVideoPlayer protected override void _Init() { base._Init(); - DebugEvent("Init"); + DebugLog("Init"); if (IsQuest) DebugLog("Detected Quest platform"); @@ -139,6 +139,9 @@ protected override void _Init() if (Utilities.IsValid(debugState)) _SetDebugState(debugState); + if (eventLogging) + eventDebugLog = debugLog; + _hasAccessControl = Utilities.IsValid(accessControl); _hasSustainZone = Utilities.IsValid(playbackZoneMembership); if (_hasSustainZone) @@ -337,7 +340,7 @@ public bool HoldReady public void _OnPlaybackZoneEnter() { - DebugEvent("Event OnPlaybackZoneEnter"); + DebugTrace("Event OnPlaybackZoneEnter"); if (playerArg == Networking.LocalPlayer) { @@ -377,7 +380,7 @@ public void _OnPlaybackZoneEnter() public void _OnPlaybackZoneExit() { - DebugEvent("Event OnPlaybackZoneExit"); + DebugTrace("Event OnPlaybackZoneExit"); if (playerArg == Networking.LocalPlayer) { @@ -400,7 +403,7 @@ public void _OnPlaybackZoneExit() /*public void _OnPlaylistListChange() { - DebugEvent("Event OnPlaylistListChange"); + DebugTrace("Event OnPlaylistListChange"); _UpdateHandlers(EVENT_VIDEO_PLAYLIST_UPDATE); if (Networking.IsOwner(gameObject)) @@ -768,7 +771,7 @@ public void _PlayQueuedUrl() public void _OnTrackChange() { - DebugEvent("Event OnTrackChange"); + DebugTrace("Event OnTrackChange"); if (Networking.IsOwner(gameObject)) _PlayPlaylistUrl(); } @@ -923,7 +926,7 @@ public void _StopVideo() public void _OnVideoReady() { - DebugEvent("Event OnVideoReady"); + DebugTrace("Event OnVideoReady"); float position = videoMux.VideoTime; float duration = videoMux.VideoDuration; @@ -960,7 +963,7 @@ public void _OnVideoReady() public void _OnVideoStart() { - DebugEvent("Event OnVideoStart"); + DebugTrace("Event OnVideoStart"); _videoReady = false; @@ -1013,7 +1016,7 @@ public void _OnVideoEnd() { _videoReady = false; - DebugEvent("Event OnVideoEnd"); + DebugTrace("Event OnVideoEnd"); if (!seekableSource && Time.time - _playStartTime < 10) { Debug.Log("Video end encountered at start of stream, ignoring"); @@ -1116,7 +1119,7 @@ void _ConditionalPlayNext() // AVPro sends loop event but does not auto-loop, and setting time sometimes deadlocks player *sigh* public void _OnVideoLoop() { - DebugEvent("Event OnVideoLoop"); + DebugTrace("Event OnVideoLoop"); /* float current = _currentPlayer.GetTime(); float duration = _currentPlayer.GetDuration(); @@ -1136,7 +1139,7 @@ public void _OnVideoError() { _videoReady = false; - DebugEvent($"Event OnVideoError"); + DebugTrace($"Event OnVideoError"); if (playerState == VIDEO_STATE_STOPPED) return; @@ -1214,7 +1217,7 @@ public void _OnVideoError() public void _OnSourceChange() { - DebugEvent($"Event OnSourceChange activeSourceType={videoMux.ActiveSourceType}"); + DebugTrace($"Event OnSourceChange activeSourceType={videoMux.ActiveSourceType}"); if (urlRemapper) urlRemapper._SetVideoSource(videoMux.ActiveSource); @@ -1232,7 +1235,7 @@ public void _OnAudioProfileChanged() if (audioManager.SelectedChannelGroup) groupName = audioManager.SelectedChannelGroup.groupName; - DebugEvent($"Event OnAudioProfileChanged channelGroup={groupName}"); + DebugTrace($"Event OnAudioProfileChanged channelGroup={groupName}"); if (urlRemapper) { @@ -1658,12 +1661,6 @@ void DebugError(string message, bool force = false) debugLog._Write("SyncPlayer", message); } - void DebugEvent(string message) - { - if (eventLogging) - DebugLog(message); - } - void DebugTrace(string message) { if (traceLogging) diff --git a/Packages/com.texelsaur.video/package.json b/Packages/com.texelsaur.video/package.json index ae7ba60..103b89d 100644 --- a/Packages/com.texelsaur.video/package.json +++ b/Packages/com.texelsaur.video/package.json @@ -10,7 +10,7 @@ "description": "Highly configurable general purpose sync and non-sync video players.", "gitDependencies": {}, "vpmDependencies": { - "com.texelsaur.common": "^1.4.0" + "com.texelsaur.common": "^1.5.0" }, "legacyFolders": { "Assets\\Texel\\Video": "ace4181b0afdac4418edcadd987c6796",