From 8c72c3349ce96f1a090e7d2e79961fd7a9fff71e Mon Sep 17 00:00:00 2001 From: CuongNV <> Date: Wed, 15 Apr 2026 18:38:20 +0700 Subject: [PATCH 1/8] add code height name --- Assets/PerfectWorld/Scripts/NPC/NPCVisual.cs | 69 +++++++++- .../UI/GamePlay/NameplateWorldAnchor.cs | 125 ++++++++++++++++++ .../UI/GamePlay/NameplateWorldAnchor.cs.meta | 2 + .../PerfectWorld/Scripts/UI/GamePlay/UINPC.cs | 31 ++++- Assets/PerfectWorld/Scripts/UI/UIPlayer.cs | 36 ++++- 5 files changed, 254 insertions(+), 9 deletions(-) create mode 100644 Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs create mode 100644 Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs.meta diff --git a/Assets/PerfectWorld/Scripts/NPC/NPCVisual.cs b/Assets/PerfectWorld/Scripts/NPC/NPCVisual.cs index 973daa245c..d435950d63 100644 --- a/Assets/PerfectWorld/Scripts/NPC/NPCVisual.cs +++ b/Assets/PerfectWorld/Scripts/NPC/NPCVisual.cs @@ -11,6 +11,7 @@ public class NPCVisual : MonoBehaviour protected CECNPC.INFO m_NPCInfo; [SerializeField] private Queue _animationQueue = new Queue(); [SerializeField] private AnimancerState _currentState; + private bool debugNamePlateBounds = true; private const float fadeTime = .2f; private const FadeMode FadeMode = Animancer.FadeMode.FixedDuration; @@ -134,7 +135,7 @@ public class NPCVisual : MonoBehaviour // 回退到从此组件的层次结构搜索 namedAnimancer = GetComponentInChildren(); } - + if (namedAnimancer == null) { BMLogger.LogWarning($"NPCVisual: RefreshNamedAnimancer - namedAnimancer == null after refresh (modelRoot: {modelRoot?.name ?? "null"})"); @@ -144,4 +145,70 @@ public class NPCVisual : MonoBehaviour BMLogger.LogMono(this, $"NPCVisual: RefreshNamedAnimancer - Successfully refreshed namedAnimancer from model: {modelRoot?.name ?? "default"}"); } } + + /// + /// Resolve world anchor from merged bounds of all SkinnedMeshRenderers. + /// 从所有SkinnedMeshRenderer合并后的包围盒解析世界锚点。 + /// + public bool TryGetNamePlateAnchorWorld(out Vector3 worldPos) + { + worldPos = default; + + var skinnedMeshRenderers = GetComponentsInChildren(true); + if (skinnedMeshRenderers == null || skinnedMeshRenderers.Length == 0) + { + return false; + } + + Bounds combinedBounds = default; + bool hasAnySkinnedMesh = false; + for (int i = 0; i < skinnedMeshRenderers.Length; i++) + { + var renderer = skinnedMeshRenderers[i]; + if (renderer == null || renderer.sharedMesh == null) + { + continue; + } + + var meshBounds = renderer.sharedMesh.bounds; + var scale = renderer.transform.lossyScale; + var worldCenter = renderer.transform.TransformPoint(meshBounds.center); + var worldSize = new Vector3( + Mathf.Abs(meshBounds.size.x * scale.x), + Mathf.Abs(meshBounds.size.y * scale.y), + Mathf.Abs(meshBounds.size.z * scale.z) + ); + var currentBounds = new Bounds(worldCenter, worldSize); + if (debugNamePlateBounds) + { + Debug.Log($"[Cuong] [NPCVisual] smr={renderer.name} localCenter={meshBounds.center} localSize={meshBounds.size} worldCenter={worldCenter} worldSize={worldSize} worldMaxY={currentBounds.max.y}"); + } + + if (!hasAnySkinnedMesh) + { + combinedBounds = currentBounds; + hasAnySkinnedMesh = true; + } + else + { + combinedBounds.Encapsulate(currentBounds); + } + } + + if (!hasAnySkinnedMesh) + { + if (debugNamePlateBounds) + { + Debug.LogWarning("[Cuong] [NPCVisual] TryGetNamePlateAnchorWorld: no valid SkinnedMeshRenderer/sharedMesh."); + } + return false; + } + + worldPos = new Vector3(combinedBounds.center.x, combinedBounds.max.y, combinedBounds.center.z); + if (debugNamePlateBounds) + { + Debug.Log($"[Cuong] [NPCVisual] combinedCenter={combinedBounds.center} combinedSize={combinedBounds.size} anchorWorld={worldPos}"); + } + return true; + } } diff --git a/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs b/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs new file mode 100644 index 0000000000..16bb2ffc68 --- /dev/null +++ b/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs @@ -0,0 +1,125 @@ +using CSNetwork.GPDataType; +using UnityEngine; + +namespace BrewMonster +{ + /// + /// World-space nameplate height / anchor: player (hook → SMR → AABB) and NPC (SMR → root offset). No CHAABB on NPC. + /// 世界坐标名牌高度锚点:玩家(挂点→蒙皮包围盒→AABB)与NPC(蒙皮包围盒→根节点抬高);NPC不走CHAABB。 + /// + [DisallowMultipleComponent] + public class NameplateWorldAnchor : MonoBehaviour + { + [Header("Hosts (optional — filled from parents if empty)")] + [SerializeField] private CECPlayer hostPlayer; + [SerializeField] private CECNPC hostNpc; + [SerializeField] private PlayerVisual playerVisual; + [SerializeField] private NPCVisual npcVisual; + + [Header("Player — skeleton hook")] + [SerializeField] private bool useHeadSkeletonHook = true; + [SerializeField] private string headHookName = "HH_Head"; + [SerializeField] private float headHookWorldOffset; + + [Header("Player — SMR / AABB fallback")] + [SerializeField] private bool preferRendererBounds = true; + [SerializeField] private bool applyMaleHeadWorldOffsetForAabbOnly = true; + [SerializeField] private float maleHeadWorldOffset = 0.1f; + + [Header("NPC — SMR / root fallback")] + [SerializeField] private bool preferVisualBoundsFallback = true; + [SerializeField] private float fallbackHeightAboveRoot = 2f; + + [Header("Shared")] + [SerializeField] private float extraWorldYOffset; + + private void Awake() => CacheRefs(); + + /// + /// Refresh host and visual references (call after hierarchy changes if needed). + /// 刷新宿主与视觉引用(层级变动后可再调)。 + /// + public void CacheRefs() + { + if (hostPlayer == null && hostNpc == null) + { + hostPlayer = GetComponentInParent(); + if (hostPlayer == null) + hostNpc = GetComponentInParent(); + } + + if (playerVisual == null && hostPlayer != null) + playerVisual = hostPlayer.GetComponent(); + + if (npcVisual == null && hostNpc != null) + npcVisual = hostNpc.GetComponent(); + } + + /// + /// Resolve world position for the nameplate canvas root. + /// 解析名牌Canvas根的世界坐标。 + /// + public bool TryGetWorldPosition(out Vector3 worldPos) + { + CacheRefs(); + if (hostPlayer != null) + return TryGetForPlayer(out worldPos); + if (hostNpc != null) + return TryGetForNpc(out worldPos); + worldPos = default; + return false; + } + + private bool TryGetForPlayer(out Vector3 worldPos) + { + worldPos = default; + if (hostPlayer == null) + return false; + + if (useHeadSkeletonHook) + { + var headHook = hostPlayer.GetHook(headHookName); + if (headHook != null) + { + worldPos = headHook.position + Vector3.up * (headHookWorldOffset + extraWorldYOffset); + return true; + } + } + + if (preferRendererBounds && playerVisual != null && playerVisual.TryGetNamePlateAnchorWorld(out worldPos)) + { + worldPos.y += extraWorldYOffset; + return true; + } + + worldPos = new Vector3( + hostPlayer.m_aabb.Center.x, + hostPlayer.m_aabb.Center.y + hostPlayer.m_aabb.Extents.y, + hostPlayer.m_aabb.Center.z); + + if (applyMaleHeadWorldOffsetForAabbOnly && hostPlayer.GetGender() == (int)GENDER.GENDER_MALE) + worldPos.y += maleHeadWorldOffset; + + worldPos.y += extraWorldYOffset; + return true; + } + + private bool TryGetForNpc(out Vector3 worldPos) + { + worldPos = default; + if (hostNpc == null) + return false; + + if (preferVisualBoundsFallback + && npcVisual != null + && npcVisual.TryGetNamePlateAnchorWorld(out worldPos)) + { + worldPos.y += extraWorldYOffset; + return true; + } + + worldPos = hostNpc.transform.position + Vector3.up * (fallbackHeightAboveRoot + extraWorldYOffset); + return true; + } + } +} diff --git a/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs.meta b/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs.meta new file mode 100644 index 0000000000..494791c2b8 --- /dev/null +++ b/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: de86c6e56ad8e224fbd7d825ef43197b \ No newline at end of file diff --git a/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs b/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs index 5b68423b5a..42a9785531 100644 --- a/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs +++ b/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs @@ -5,7 +5,6 @@ using UnityEngine.UI; namespace BrewMonster { - public enum IconTaskType { QI_NONE = -1, @@ -22,10 +21,11 @@ namespace BrewMonster QI_IN_TYPE2 = 9, // chua biet QI_OUT_TYPE3 = 10, // task daily (nhan) QI_IN_TYPE3 = 11, // task daily (hoan thanh) - QI_OUT_TYPE4 = 12, // task chinh (nhan) + QI_OUT_TYPE4 = 12, // task chinh (nhan) QI_IN_TYPE4 = 13, // task chinh (hoan thanh) } + [RequireComponent(typeof(NameplateWorldAnchor))] public class UINPC : MonoBehaviour { [SerializeField] private TextMeshProUGUI _nameText; @@ -36,10 +36,16 @@ namespace BrewMonster [SerializeField] private GameObject _iconTaskMain; [SerializeField] private List _listIconTask; + [Header("World Nameplate")] + [SerializeField] private Transform _canvasRoot; + + private NameplateWorldAnchor _nameplateAnchor; private Image _cachedIconImage; private void Awake() { + CacheRefs(); + _nameplateAnchor = GetComponent(); if (_iconTaskMain != null) { _cachedIconImage = _iconTaskMain.GetComponent(); @@ -50,6 +56,18 @@ namespace BrewMonster } } + private void LateUpdate() + { + if (_canvasRoot == null) + { + return; + } + if (_nameplateAnchor != null && _nameplateAnchor.TryGetWorldPosition(out var worldPos)) + { + _canvasRoot.position = worldPos; + } + } + // Start is called once before the first execution of Update after the MonoBehaviour is created public void SetName(string name) { @@ -90,6 +108,15 @@ namespace BrewMonster if (_iconTaskMain != null) _iconTaskMain.SetActive(isShow); } + + private void CacheRefs() + { + if (_canvasRoot == null) + { + _canvasRoot = transform; + } + + } } } diff --git a/Assets/PerfectWorld/Scripts/UI/UIPlayer.cs b/Assets/PerfectWorld/Scripts/UI/UIPlayer.cs index 155352d451..1679f4b094 100644 --- a/Assets/PerfectWorld/Scripts/UI/UIPlayer.cs +++ b/Assets/PerfectWorld/Scripts/UI/UIPlayer.cs @@ -1,5 +1,6 @@ using System; using System.Threading; +using BrewMonster; using BrewMonster.Scripts.ChatUI; using CSNetwork.GPDataType; using Cysharp.Threading.Tasks; @@ -9,6 +10,7 @@ using UnityEngine.UI; namespace BrewMonster.PerfectWorld.Scripts.UI { + [RequireComponent(typeof(NameplateWorldAnchor))] public class UIPlayer : MonoBehaviour { [Header("World HUD (optional)")] @@ -19,7 +21,8 @@ namespace BrewMonster.PerfectWorld.Scripts.UI [Header("References")] [SerializeField] private CECPlayer hostplayer; - + [SerializeField] private NameplateWorldAnchor nameplateAnchor; + [SerializeField] private float chatDisplayDuration = 5f; private CancellationTokenSource _chatCts; @@ -33,7 +36,7 @@ namespace BrewMonster.PerfectWorld.Scripts.UI } private void Start() - { + { CacheRefs(); if (hostplayer == null) @@ -49,6 +52,19 @@ namespace BrewMonster.PerfectWorld.Scripts.UI EventBus.SubscribeChannel(hostplayer.m_PlayerInfo.cid, UpdateHostPlayerInfoUI); } + private void LateUpdate() + { + if (!_isVisible || canvasRoot == null) + { + return; + } + + if (nameplateAnchor != null && nameplateAnchor.TryGetWorldPosition(out var worldPos)) + { + canvasRoot.position = worldPos; + } + } + private void OnDestroy() { _chatCts?.Cancel(); @@ -105,6 +121,14 @@ namespace BrewMonster.PerfectWorld.Scripts.UI if (hostplayer == null) hostplayer = GetComponentInParent(); + if (nameplateAnchor == null) + nameplateAnchor = GetComponent(); + + if (nameplateAnchor != null) + { + nameplateAnchor.CacheRefs(); + } + if (canvasRoot == null) { var t = transform.Find("Canvas"); @@ -133,7 +157,7 @@ namespace BrewMonster.PerfectWorld.Scripts.UI for (int i = 0; i < t.childCount; i++) SetLayerRecursively(t.GetChild(i).gameObject, layer); } - + private void SetChatMessage(EventChatMessageOnTopPlayer cxt) { if (chatText == null) @@ -145,7 +169,7 @@ namespace BrewMonster.PerfectWorld.Scripts.UI SetLastSaidWords(cxt.context); }); } - + public void SetLastSaidWords(string message, float duration = -1f) { if (chatText == null || string.IsNullOrEmpty(message)) @@ -162,7 +186,7 @@ namespace BrewMonster.PerfectWorld.Scripts.UI HideChatAsync(time, _chatCts.Token).Forget(); } - + private async UniTaskVoid HideChatAsync(float time, CancellationToken token) { try @@ -192,4 +216,4 @@ namespace BrewMonster.PerfectWorld.Scripts.UI this.context = context; } } -} \ No newline at end of file +} From 78ceafb347a4c53526bd84ba48bd1e560d413e6a Mon Sep 17 00:00:00 2001 From: CuongNV <> Date: Wed, 15 Apr 2026 18:38:31 +0700 Subject: [PATCH 2/8] add + --- Assets/Scripts/PlayerVisual.cs | 69 ++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/Assets/Scripts/PlayerVisual.cs b/Assets/Scripts/PlayerVisual.cs index e6123b63a1..f0e21fdb11 100644 --- a/Assets/Scripts/PlayerVisual.cs +++ b/Assets/Scripts/PlayerVisual.cs @@ -24,6 +24,7 @@ namespace BrewMonster [SerializeField] private bool isHit; [SerializeField] private int id; [SerializeField] private bool isDebug; + [SerializeField] private bool debugNamePlateBounds; private bool _eventBusSubscribed; private const float FadeTime = 100; @@ -311,5 +312,73 @@ namespace BrewMonster BMLogger.Log($"PlayerVisual: RefreshNamedAnimancer - Successfully refreshed namedAnimancer from model: {modelRoot?.name ?? "default"}"); } } + + /// + /// Resolve nameplate anchor from merged bounds of all SkinnedMeshRenderers. + /// 从所有SkinnedMeshRenderer合并后的包围盒解析名牌锚点。 + /// + public bool TryGetNamePlateAnchorWorld(out Vector3 worldPos) + { + worldPos = default; + + var skinnedMeshRenderers = GetComponentsInChildren(true); + if (skinnedMeshRenderers == null || skinnedMeshRenderers.Length == 0) + { + return false; + } + + Bounds combinedBounds = default; + bool hasAnySkinnedMesh = false; + for (int i = 0; i < skinnedMeshRenderers.Length; i++) + { + var renderer = skinnedMeshRenderers[i]; + if (renderer == null || renderer.sharedMesh == null) + { + continue; + } + + var meshBounds = renderer.sharedMesh.bounds; + var scale = renderer.transform.lossyScale; + var worldCenter = renderer.transform.TransformPoint(meshBounds.center); + var worldSize = new Vector3( + Mathf.Abs(meshBounds.size.x * scale.x), + Mathf.Abs(meshBounds.size.y * scale.y), + Mathf.Abs(meshBounds.size.z * scale.z) + ); + var currentBounds = new Bounds(worldCenter, worldSize); + if (debugNamePlateBounds) + { + Debug.Log($"[Cuong] [PlayerVisual] smr={renderer.name} localCenter={meshBounds.center} localSize={meshBounds.size} worldCenter={worldCenter} worldSize={worldSize} worldMaxY={currentBounds.max.y}"); + } + + if (!hasAnySkinnedMesh) + { + combinedBounds = currentBounds; + hasAnySkinnedMesh = true; + } + else + { + combinedBounds.Encapsulate(currentBounds); + } + } + + if (!hasAnySkinnedMesh) + { + if (debugNamePlateBounds) + { + Debug.LogWarning("[Cuong] [PlayerVisual] TryGetNamePlateAnchorWorld: no valid SkinnedMeshRenderer/sharedMesh."); + } + return false; + } + + // Use merged bounds center for X/Z and merged top for Y. + // 使用合并包围盒中心作为X/Z,使用合并包围盒顶部作为Y。 + worldPos = new Vector3(combinedBounds.center.x, combinedBounds.max.y, combinedBounds.center.z); + if (debugNamePlateBounds) + { + Debug.Log($"[Cuong] [PlayerVisual] combinedCenter={combinedBounds.center} combinedSize={combinedBounds.size} anchorWorld={worldPos}"); + } + return true; + } } } \ No newline at end of file From d5f6d7d6ea0d0ed71fc48c35944d336ab642a954 Mon Sep 17 00:00:00 2001 From: CuongNV <> Date: Wed, 15 Apr 2026 18:38:57 +0700 Subject: [PATCH 3/8] update prefabs --- Assets/Resources/Monster/MonsterPrefab.prefab | 35 +++++++++++-- Assets/Resources/NPC/NPCServer.prefab | 45 +++++++++++++---- .../Pet/PetMount/PetMountPrefab.prefab | 26 ++++++++++ Assets/Resources/Pet/PetPrefab.prefab | 29 +++++++++++ Assets/Resources/Player/PlayerPrefab.prefab | 49 ++++++++++++++----- 5 files changed, 160 insertions(+), 24 deletions(-) diff --git a/Assets/Resources/Monster/MonsterPrefab.prefab b/Assets/Resources/Monster/MonsterPrefab.prefab index 99a0374cb5..9c3aa1b9b2 100644 --- a/Assets/Resources/Monster/MonsterPrefab.prefab +++ b/Assets/Resources/Monster/MonsterPrefab.prefab @@ -273,7 +273,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -0, y: 1.76} + m_AnchoredPosition: {x: -0, y: 0} m_SizeDelta: {x: 1, y: 1} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &2934704790758419263 @@ -460,6 +460,7 @@ GameObject: m_Component: - component: {fileID: 7528353842011023148} - component: {fileID: 15783571296627952} + - component: {fileID: 9001000111222333445} - component: {fileID: 775994425462537197} m_Layer: 0 m_Name: UIPlayer @@ -476,8 +477,8 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 6780952369966265306} serializedVersion: 2 - m_LocalRotation: {x: 0.026024496, y: 0.5726356, z: -0.0181917, w: 0.8191949} - m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalRotation: {x: 0.02654451, y: 0.57262397, z: -0.018555203, w: 0.81917816} + m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: @@ -501,6 +502,32 @@ MonoBehaviour: _healthImage: {fileID: 3715353156977051930} _iconTaskMain: {fileID: 0} _listIconTask: [] + _canvasRoot: {fileID: 0} +--- !u!114 &9001000111222333445 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6780952369966265306} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: de86c6e56ad8e224fbd7d825ef43197b, type: 3} + m_Name: + m_EditorClassIdentifier: + hostPlayer: {fileID: 0} + hostNpc: {fileID: 2542060226037108388} + playerVisual: {fileID: 0} + npcVisual: {fileID: -3520322077839857420} + useHeadSkeletonHook: 1 + headHookName: HH_Head + headHookWorldOffset: 0 + preferRendererBounds: 1 + applyMaleHeadWorldOffsetForAabbOnly: 1 + maleHeadWorldOffset: 0.1 + preferVisualBoundsFallback: 1 + fallbackHeightAboveRoot: 2 + extraWorldYOffset: 0.3 --- !u!114 &775994425462537197 MonoBehaviour: m_ObjectHideFlags: 0 @@ -671,7 +698,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -0, y: 1.51} + m_AnchoredPosition: {x: -0, y: 0} m_SizeDelta: {x: 1, y: 0.2} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &7187889842481329847 diff --git a/Assets/Resources/NPC/NPCServer.prefab b/Assets/Resources/NPC/NPCServer.prefab index b3ff78aa8e..2033443c8c 100644 --- a/Assets/Resources/NPC/NPCServer.prefab +++ b/Assets/Resources/NPC/NPCServer.prefab @@ -237,7 +237,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: targetCamera: {fileID: 0} - mode: 1 + mode: 0 --- !u!1 &5100466107490290627 GameObject: m_ObjectHideFlags: 0 @@ -263,16 +263,16 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 5100466107490290627} - m_LocalRotation: {x: 3.7702125e-16, y: -0.97228837, z: -0.23378475, w: 1.5679955e-15} - m_LocalPosition: {x: 0, y: 0, z: 1.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: 8006159455096186264} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 2.36} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 1} m_SizeDelta: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &397635185778217656 @@ -323,6 +323,7 @@ GameObject: m_Component: - component: {fileID: 8745273338113588215} - component: {fileID: 7336483376496286557} + - component: {fileID: 9001000111222333446} m_Layer: 0 m_Name: UIPlayer m_TagString: Untagged @@ -377,6 +378,32 @@ MonoBehaviour: - {fileID: 536497386, guid: 75fb3bbb7c9421e4d8bf0728cf2b59b1, type: 3} - {fileID: -440769636, guid: 75fb3bbb7c9421e4d8bf0728cf2b59b1, type: 3} - {fileID: 844877792, guid: 75fb3bbb7c9421e4d8bf0728cf2b59b1, type: 3} + _canvasRoot: {fileID: 8006159455096186264} +--- !u!114 &9001000111222333446 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5709911674741944065} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: de86c6e56ad8e224fbd7d825ef43197b, type: 3} + m_Name: + m_EditorClassIdentifier: + hostPlayer: {fileID: 0} + hostNpc: {fileID: -5899287755522118344} + playerVisual: {fileID: 0} + npcVisual: {fileID: 1882963580244400679} + useHeadSkeletonHook: 1 + headHookName: HH_Head + headHookWorldOffset: 0 + preferRendererBounds: 1 + applyMaleHeadWorldOffsetForAabbOnly: 1 + maleHeadWorldOffset: 0.1 + preferVisualBoundsFallback: 1 + fallbackHeightAboveRoot: 2 + extraWorldYOffset: 0.3 --- !u!1 &6510845919681767284 GameObject: m_ObjectHideFlags: 0 @@ -403,7 +430,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 6510845919681767284} - m_LocalRotation: {x: 0.15080568, y: -0.8027092, z: -0.16719593, w: 0.5522329} + 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 @@ -412,7 +439,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 2.11} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1, y: 1} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &4151558405913130980 @@ -521,7 +548,7 @@ MonoBehaviour: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 6510845919681767284} - m_Enabled: 1 + m_Enabled: 0 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 1a05efb08a5fbef42b3e8414040b6c33, type: 3} m_Name: diff --git a/Assets/Resources/Pet/PetMount/PetMountPrefab.prefab b/Assets/Resources/Pet/PetMount/PetMountPrefab.prefab index 0076d33792..d378bb4487 100644 --- a/Assets/Resources/Pet/PetMount/PetMountPrefab.prefab +++ b/Assets/Resources/Pet/PetMount/PetMountPrefab.prefab @@ -531,6 +531,7 @@ GameObject: m_Component: - component: {fileID: 4817336479570982655} - component: {fileID: 623488520321375200} + - component: {fileID: 9001000111222333448} - component: {fileID: 7635475614995666769} m_Layer: 0 m_Name: UIPlayer @@ -570,6 +571,31 @@ MonoBehaviour: _nameText: {fileID: 2285106042110813528} _healthText: {fileID: 7174288820249738816} _healthImage: {fileID: 5673963502904499965} +--- !u!114 &9001000111222333448 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7411326708969747318} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: de86c6e56ad8e224fbd7d825ef43197b, type: 3} + m_Name: + m_EditorClassIdentifier: + hostPlayer: {fileID: 0} + hostNpc: {fileID: 0} + playerVisual: {fileID: 0} + npcVisual: {fileID: 0} + useHeadSkeletonHook: 1 + headHookName: HH_Head + headHookWorldOffset: 0 + preferRendererBounds: 1 + applyMaleHeadWorldOffsetForAabbOnly: 1 + maleHeadWorldOffset: 0.1 + preferVisualBoundsFallback: 1 + fallbackHeightAboveRoot: 2 + extraWorldYOffset: 0.3 --- !u!114 &7635475614995666769 MonoBehaviour: m_ObjectHideFlags: 0 diff --git a/Assets/Resources/Pet/PetPrefab.prefab b/Assets/Resources/Pet/PetPrefab.prefab index 271b08eb71..37d3668c4c 100644 --- a/Assets/Resources/Pet/PetPrefab.prefab +++ b/Assets/Resources/Pet/PetPrefab.prefab @@ -582,6 +582,7 @@ GameObject: m_Component: - component: {fileID: 7933090353384311527} - component: {fileID: 2684574450150702093} + - component: {fileID: 9001000111222333447} - component: {fileID: 8928742731626340957} m_Layer: 0 m_Name: UIPlayer @@ -621,6 +622,34 @@ MonoBehaviour: _nameText: {fileID: 6491069708694599127} _healthText: {fileID: 8939523771274757837} _healthImage: {fileID: 3651088183696393374} + _iconTaskMain: {fileID: 0} + _listIconTask: [] + _canvasRoot: {fileID: 0} +--- !u!114 &9001000111222333447 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6209053004261175930} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: de86c6e56ad8e224fbd7d825ef43197b, type: 3} + m_Name: + m_EditorClassIdentifier: + hostPlayer: {fileID: 0} + hostNpc: {fileID: 4017591853686837057} + playerVisual: {fileID: 0} + npcVisual: {fileID: 1776217013714687322} + useHeadSkeletonHook: 1 + headHookName: HH_Head + headHookWorldOffset: 0 + preferRendererBounds: 1 + applyMaleHeadWorldOffsetForAabbOnly: 1 + maleHeadWorldOffset: 0.1 + preferVisualBoundsFallback: 1 + fallbackHeightAboveRoot: 2 + extraWorldYOffset: 0.3 --- !u!114 &8928742731626340957 MonoBehaviour: m_ObjectHideFlags: 0 diff --git a/Assets/Resources/Player/PlayerPrefab.prefab b/Assets/Resources/Player/PlayerPrefab.prefab index 8b7f7ad818..7157a6a614 100644 --- a/Assets/Resources/Player/PlayerPrefab.prefab +++ b/Assets/Resources/Player/PlayerPrefab.prefab @@ -103,7 +103,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 3356314488807061436} - m_LocalRotation: {x: -3.7702125e-16, y: 0.97228837, z: 0.23378475, w: 1.5679955e-15} + m_LocalRotation: {x: 0.02634692, y: 0.5726284, z: -0.018417083, w: 0.81918466} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 @@ -194,7 +194,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: targetCamera: {fileID: 0} - mode: 1 + mode: 0 --- !u!1 &3780435110686298972 GameObject: m_ObjectHideFlags: 0 @@ -236,6 +236,7 @@ GameObject: m_Component: - component: {fileID: 8793437051475293945} - component: {fileID: 2274946704047842688} + - component: {fileID: 9001000111222333444} m_Layer: 0 m_Name: UIPlayer m_TagString: Untagged @@ -273,10 +274,36 @@ MonoBehaviour: m_EditorClassIdentifier: healthImage: {fileID: 6923483925198672938} nameText: {fileID: 0} - canvasRoot: {fileID: 0} + canvasRoot: {fileID: 7804302986034915478} chatText: {fileID: 5163939573699579047} hostplayer: {fileID: 0} + nameplateAnchor: {fileID: 9001000111222333444} chatDisplayDuration: 5 +--- !u!114 &9001000111222333444 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5505736060713067023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: de86c6e56ad8e224fbd7d825ef43197b, type: 3} + m_Name: + m_EditorClassIdentifier: + hostPlayer: {fileID: 0} + hostNpc: {fileID: 0} + playerVisual: {fileID: 6892195500068497589} + npcVisual: {fileID: 0} + useHeadSkeletonHook: 1 + headHookName: HH_Head + headHookWorldOffset: 0 + preferRendererBounds: 1 + applyMaleHeadWorldOffsetForAabbOnly: 1 + maleHeadWorldOffset: 0.1 + preferVisualBoundsFallback: 1 + fallbackHeightAboveRoot: 2 + extraWorldYOffset: 0 --- !u!1 &5826062684364525110 GameObject: m_ObjectHideFlags: 0 @@ -334,8 +361,8 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 6417286913550183034} - m_LocalRotation: {x: 0.15073968, y: -0.8028954, z: -0.1672268, w: 0.5519708} - m_LocalPosition: {x: 0, y: 0, z: -0.263} + 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: [] @@ -343,7 +370,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0.01, y: 2.799} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1, y: 1} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &4235828909678541546 @@ -452,7 +479,7 @@ MonoBehaviour: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 6417286913550183034} - m_Enabled: 1 + m_Enabled: 0 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 1a05efb08a5fbef42b3e8414040b6c33, type: 3} m_Name: @@ -567,8 +594,8 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 7348274655157863130} - m_LocalRotation: {x: 0.1502115, y: -0.80294836, z: -0.16792805, w: 0.55182487} - m_LocalPosition: {x: 0, y: 0, z: -0.19} + 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: [] @@ -576,7 +603,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -0, y: 4.205} + m_AnchoredPosition: {x: -0, y: 2} m_SizeDelta: {x: 1.5, y: 1.5} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &6415805438999997156 @@ -685,7 +712,7 @@ MonoBehaviour: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 7348274655157863130} - m_Enabled: 1 + m_Enabled: 0 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 1a05efb08a5fbef42b3e8414040b6c33, type: 3} m_Name: From 0c84e82d0363e447308650b1563f4e5b2d92a8b1 Mon Sep 17 00:00:00 2001 From: CuongNV <> Date: Thu, 16 Apr 2026 10:11:07 +0700 Subject: [PATCH 4/8] update prefab --- .../Scripts/UI/GamePlay/NameplateWorldAnchor.cs | 4 ++-- Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs | 12 ++++++++++-- Assets/Resources/Player/PlayerPrefab.prefab | 5 +++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs b/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs index 16bb2ffc68..e4238a8e24 100644 --- a/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs +++ b/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs @@ -56,8 +56,8 @@ namespace BrewMonster } /// - /// Resolve world position for the nameplate canvas root. - /// 解析名牌Canvas根的世界坐标。 + /// Resolve world position for the nameplate canvas root. Call once at init or every frame if the plate should follow the host. + /// 解析名牌Canvas根的世界坐标。仅在初始化时调用一次,或若名牌需跟随宿主则每帧调用。 /// public bool TryGetWorldPosition(out Vector3 worldPos) { diff --git a/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs b/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs index 42a9785531..cec231fbc0 100644 --- a/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs +++ b/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs @@ -56,7 +56,16 @@ namespace BrewMonster } } - private void LateUpdate() + private void Start() + { + ApplyInitialCanvasRootPosition(); + } + + /// + /// World position for the nameplate root is applied once at startup (no per-frame follow). + /// 名牌根节点世界坐标仅在启动时设置一次(不做每帧跟随)。 + /// + private void ApplyInitialCanvasRootPosition() { if (_canvasRoot == null) { @@ -68,7 +77,6 @@ namespace BrewMonster } } - // Start is called once before the first execution of Update after the MonoBehaviour is created public void SetName(string name) { _nameText.text = name; diff --git a/Assets/Resources/Player/PlayerPrefab.prefab b/Assets/Resources/Player/PlayerPrefab.prefab index 7157a6a614..5b90c9b832 100644 --- a/Assets/Resources/Player/PlayerPrefab.prefab +++ b/Assets/Resources/Player/PlayerPrefab.prefab @@ -303,7 +303,7 @@ MonoBehaviour: maleHeadWorldOffset: 0.1 preferVisualBoundsFallback: 1 fallbackHeightAboveRoot: 2 - extraWorldYOffset: 0 + extraWorldYOffset: 0.3 --- !u!1 &5826062684364525110 GameObject: m_ObjectHideFlags: 0 @@ -568,6 +568,7 @@ MonoBehaviour: isHit: 0 id: 0 isDebug: 0 + debugNamePlateBounds: 0 --- !u!1 &7348274655157863130 GameObject: m_ObjectHideFlags: 0 @@ -603,7 +604,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -0, y: 2} + m_AnchoredPosition: {x: -0, y: 0} m_SizeDelta: {x: 1.5, y: 1.5} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &6415805438999997156 From 329f62a05023e5d32ddf2a0a0fd5acac2f925973 Mon Sep 17 00:00:00 2001 From: CuongNV <> Date: Thu, 16 Apr 2026 14:29:08 +0700 Subject: [PATCH 5/8] update prefab and logic draw name --- Assets/PerfectWorld/Scripts/NPC/CECNPC.cs | 4 + Assets/PerfectWorld/Scripts/NPC/NPCVisual.cs | 1 + .../UI/GamePlay/NameplateWorldAnchor.cs | 27 ++++++- .../PerfectWorld/Scripts/UI/GamePlay/UINPC.cs | 75 +++++++++++++++++-- Assets/Resources/Monster/MonsterPrefab.prefab | 2 +- Assets/Resources/NPC/NPCServer.prefab | 6 +- 6 files changed, 103 insertions(+), 12 deletions(-) diff --git a/Assets/PerfectWorld/Scripts/NPC/CECNPC.cs b/Assets/PerfectWorld/Scripts/NPC/CECNPC.cs index 51d33888db..399a09ace2 100644 --- a/Assets/PerfectWorld/Scripts/NPC/CECNPC.cs +++ b/Assets/PerfectWorld/Scripts/NPC/CECNPC.cs @@ -1019,6 +1019,10 @@ public class CECNPC : CECObject var npcVisual = GetComponent(); npcVisual?.InitNPCEventDoneHandler(m_NPCInfo); + // UINPC.Start can run before async model instantiate; refresh anchor once SMR hierarchy exists. + // UINPC.Start可能在异步模型实例化之前执行;SMR层次就绪后刷新名牌锚点。 + m_npcUI?.RefreshWorldNameplatePosition(); + //QueueECModelForLoad(MTL_ECM_NPC, GetNPCInfo().nid, GetBornStamp(), GetServerPos(), szModelFile, tid); } public ROLEBASICPROP GetBasicProps() { return m_BasicProps; } diff --git a/Assets/PerfectWorld/Scripts/NPC/NPCVisual.cs b/Assets/PerfectWorld/Scripts/NPC/NPCVisual.cs index d435950d63..eca6c7a647 100644 --- a/Assets/PerfectWorld/Scripts/NPC/NPCVisual.cs +++ b/Assets/PerfectWorld/Scripts/NPC/NPCVisual.cs @@ -211,4 +211,5 @@ public class NPCVisual : MonoBehaviour } return true; } + } diff --git a/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs b/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs index e4238a8e24..5d17eb9c58 100644 --- a/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs +++ b/Assets/PerfectWorld/Scripts/UI/GamePlay/NameplateWorldAnchor.cs @@ -61,11 +61,19 @@ namespace BrewMonster /// public bool TryGetWorldPosition(out Vector3 worldPos) { + return TryGetWorldPosition(out worldPos, out _, logNpcRootFallback: true); + } + + /// True when NPC anchor came from merged SMR bounds (not root fallback). NPC以外恒为false。 + /// When false, NPC root fallback does not LogError (for retries before model load). 为假时NPC根回退不打LogError(模型未加载前的重试)。 + public bool TryGetWorldPosition(out Vector3 worldPos, out bool npcUsedSkinnedMeshMergedBounds, bool logNpcRootFallback = true) + { + npcUsedSkinnedMeshMergedBounds = false; CacheRefs(); if (hostPlayer != null) return TryGetForPlayer(out worldPos); if (hostNpc != null) - return TryGetForNpc(out worldPos); + return TryGetForNpc(out worldPos, out npcUsedSkinnedMeshMergedBounds, logNpcRootFallback); worldPos = default; return false; } @@ -104,9 +112,10 @@ namespace BrewMonster return true; } - private bool TryGetForNpc(out Vector3 worldPos) + private bool TryGetForNpc(out Vector3 worldPos, out bool usedSkinnedMeshMergedBounds, bool logNpcRootFallback) { worldPos = default; + usedSkinnedMeshMergedBounds = false; if (hostNpc == null) return false; @@ -114,11 +123,25 @@ namespace BrewMonster && npcVisual != null && npcVisual.TryGetNamePlateAnchorWorld(out worldPos)) { + usedSkinnedMeshMergedBounds = true; worldPos.y += extraWorldYOffset; return true; } worldPos = hostNpc.transform.position + Vector3.up * (fallbackHeightAboveRoot + extraWorldYOffset); + if (logNpcRootFallback) + { + string reason = !preferVisualBoundsFallback + ? "preferVisualBoundsFallback is false (bounds path skipped)" + : npcVisual == null + ? "npcVisual is null" + : "TryGetNamePlateAnchorWorld failed (no usable SkinnedMeshRenderer/sharedMesh)"; + BMLogger.LogError( + "[Cuong] [NameplateWorldAnchor] NPC: cannot use merged SMR bounds; using root fallback. " + + $"Reason: {reason}. hostNpc={hostNpc.name} fallbackHeightAboveRoot={fallbackHeightAboveRoot} extraWorldYOffset={extraWorldYOffset}. " + + "Formula: worldPos = hostNpc.transform.position + Vector3.up * (fallbackHeightAboveRoot + extraWorldYOffset). " + + "When bounds OK: worldPos.x/z = combinedBounds.center.x/z, worldPos.y = combinedBounds.max.y + extraWorldYOffset."); + } return true; } } diff --git a/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs b/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs index cec231fbc0..eb6b7165b7 100644 --- a/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs +++ b/Assets/PerfectWorld/Scripts/UI/GamePlay/UINPC.cs @@ -1,3 +1,4 @@ +using System.Collections; using System.Collections.Generic; using TMPro; using UnityEngine; @@ -41,6 +42,7 @@ namespace BrewMonster private NameplateWorldAnchor _nameplateAnchor; private Image _cachedIconImage; + private Coroutine _initialNameplateRoutine; private void Awake() { @@ -58,23 +60,84 @@ namespace BrewMonster private void Start() { - ApplyInitialCanvasRootPosition(); + _initialNameplateRoutine = StartCoroutine(CoApplyInitialNameplateDeferred(maxFrames: 120)); } /// - /// World position for the nameplate root is applied once at startup (no per-frame follow). - /// 名牌根节点世界坐标仅在启动时设置一次(不做每帧跟随)。 + /// Call after NPC model async load (e.g. ) so SMR bounds exist before anchoring. + /// 在NPC模型异步加载完成后调用(如 ),以便SMR包围盒已存在再定位名牌。 /// - private void ApplyInitialCanvasRootPosition() + public void RefreshWorldNameplatePosition() + { + if (_initialNameplateRoutine != null) + { + StopCoroutine(_initialNameplateRoutine); + _initialNameplateRoutine = null; + } + _initialNameplateRoutine = StartCoroutine(CoApplyInitialNameplateDeferred(maxFrames: 45)); + } + + /// + /// World position for the nameplate root is applied once SMR bounds exist, or after timeout with root fallback (then may log). + /// with logNpcRootFallback: false while retrying so early frames do not spam errors. + /// 名牌根节点世界坐标:优先等合并SMR包围盒就绪后再设一次;超时则用根回退(此时才打LogError)。 + /// + private IEnumerator CoApplyInitialNameplateDeferred(int maxFrames) { if (_canvasRoot == null) { - return; + CacheRefs(); } - if (_nameplateAnchor != null && _nameplateAnchor.TryGetWorldPosition(out var worldPos)) + if (_canvasRoot == null) + { + yield break; + } + if (_nameplateAnchor == null) + { + BMLogger.LogError( + "[Cuong] [UINPC] ApplyInitialCanvasRootPosition: NameplateWorldAnchor missing. " + + "Expected formula: _canvasRoot.position = anchor.TryGetWorldPosition(out worldPos) ? worldPos : unchanged."); + _initialNameplateRoutine = null; + yield break; + } + + for (var i = 0; i < maxFrames; i++) + { + if (_nameplateAnchor.TryGetWorldPosition(out var worldPos, out var fromSmr, logNpcRootFallback: false) + && fromSmr) + { + ApplyCanvasRootLocalPosition(worldPos); + _initialNameplateRoutine = null; + yield break; + } + yield return null; + } + + if (_nameplateAnchor.TryGetWorldPosition(out var finalPos, out _, logNpcRootFallback: true)) + { + ApplyCanvasRootLocalPosition(finalPos); + } + else + { + BMLogger.LogError( + "[Cuong] [UINPC] ApplyInitialCanvasRootPosition: TryGetWorldPosition returned false (no CECPlayer/CECNPC parent?). " + + "Formula when OK: _canvasRoot.position = worldPos. " + + "NPC with SMR bounds: worldPos = (combinedBounds.center.x, combinedBounds.max.y, combinedBounds.center.z) + Vector3.up * extraWorldYOffset. " + + "NPC fallback: worldPos = hostNpc.transform.position + Vector3.up * (fallbackHeightAboveRoot + extraWorldYOffset)."); + } + _initialNameplateRoutine = null; + } + + private void ApplyCanvasRootLocalPosition(Vector3 worldPos) + { + var parent = _canvasRoot.parent; + if (parent == null) { _canvasRoot.position = worldPos; + return; } + + _canvasRoot.localPosition = parent.InverseTransformPoint(worldPos); } public void SetName(string name) diff --git a/Assets/Resources/Monster/MonsterPrefab.prefab b/Assets/Resources/Monster/MonsterPrefab.prefab index 9c3aa1b9b2..f9a8cfefc6 100644 --- a/Assets/Resources/Monster/MonsterPrefab.prefab +++ b/Assets/Resources/Monster/MonsterPrefab.prefab @@ -502,7 +502,7 @@ MonoBehaviour: _healthImage: {fileID: 3715353156977051930} _iconTaskMain: {fileID: 0} _listIconTask: [] - _canvasRoot: {fileID: 0} + _canvasRoot: {fileID: 7528353842011023148} --- !u!114 &9001000111222333445 MonoBehaviour: m_ObjectHideFlags: 0 diff --git a/Assets/Resources/NPC/NPCServer.prefab b/Assets/Resources/NPC/NPCServer.prefab index 2033443c8c..08cb538df5 100644 --- a/Assets/Resources/NPC/NPCServer.prefab +++ b/Assets/Resources/NPC/NPCServer.prefab @@ -147,7 +147,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 3297168817873124018} - m_LocalRotation: {x: -3.7702125e-16, y: 0.97228837, z: 0.23378475, w: 1.5679955e-15} + m_LocalRotation: {x: 0.0260765, y: 0.57263446, z: -0.018228054, w: 0.8191932} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 @@ -272,7 +272,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0.5} m_SizeDelta: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &397635185778217656 @@ -378,7 +378,7 @@ MonoBehaviour: - {fileID: 536497386, guid: 75fb3bbb7c9421e4d8bf0728cf2b59b1, type: 3} - {fileID: -440769636, guid: 75fb3bbb7c9421e4d8bf0728cf2b59b1, type: 3} - {fileID: 844877792, guid: 75fb3bbb7c9421e4d8bf0728cf2b59b1, type: 3} - _canvasRoot: {fileID: 8006159455096186264} + _canvasRoot: {fileID: 8745273338113588215} --- !u!114 &9001000111222333446 MonoBehaviour: m_ObjectHideFlags: 0 From 97bb1f97d4ba36b43fbd84d4fcc858fef5417af9 Mon Sep 17 00:00:00 2001 From: Chomper9981 Date: Thu, 16 Apr 2026 15:30:52 +0700 Subject: [PATCH 6/8] Add A3DCombinedAction logic --- .../players/形象/妖兽男/躯干/妖兽男.prefab | 14 + .../妖兽男/躯干/妖兽男_CombinedActionSO.asset | 31952 +++++++++ .../躯干/妖兽男_CombinedActionSO.asset.meta | 8 + .../players/形象/武侠男/躯干/武侠男.prefab | 14 + .../武侠男/躯干/武侠男_CombinedActionSO.asset | 57865 ++++++++++++++++ .../躯干/武侠男_CombinedActionSO.asset.meta | 8 + .../players/形象/法师女/躯干/法师女.prefab | 14 + .../法师女/躯干/法师女_CombinedActionSO.asset | 26721 +++++++ .../躯干/法师女_CombinedActionSO.asset.meta | 8 + .../ModelRenderer/Scripts/A3DModelReader.meta | 8 + .../Scripts/A3DModelReader/Common.meta | 8 + .../Common/A3DCombinedAction.cs | 444 + .../Common/A3DCombinedAction.cs.meta | 3 + Assets/ModelRenderer/Scripts/BrewMonster.meta | 8 + .../Scripts/BrewMonster/ECModel.meta | 8 + .../BrewMonster/ECModel/CombineActHolder.cs | 12 + .../ECModel/CombineActHolder.cs.meta | 2 + .../BrewMonster/ECModel/CombinedActionSO.cs | 19 + .../ECModel/CombinedActionSO.cs.meta | 2 + Assets/PerfectWorld/Scripts/Move/CECPlayer.cs | 85 +- Assets/PerfectWorld/Scripts/NPC/CECModel.cs | 141 +- .../Players/CECPlayerActionController.cs | 24 +- .../Players/CECPlayerActionPlayPolicy.cs | 128 +- .../Scripts/Skills/SkillStubs2/skill150.cs | 42 +- Assets/Scripts/CECHostPlayer.cs | 2 +- Assets/Scripts/PlayerVisual.cs | 121 +- 26 files changed, 117494 insertions(+), 167 deletions(-) create mode 100755 Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男_CombinedActionSO.asset create mode 100755 Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男_CombinedActionSO.asset.meta create mode 100755 Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男_CombinedActionSO.asset create mode 100755 Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男_CombinedActionSO.asset.meta create mode 100755 Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女_CombinedActionSO.asset create mode 100755 Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女_CombinedActionSO.asset.meta create mode 100644 Assets/ModelRenderer/Scripts/A3DModelReader.meta create mode 100644 Assets/ModelRenderer/Scripts/A3DModelReader/Common.meta create mode 100755 Assets/ModelRenderer/Scripts/A3DModelReader/Common/A3DCombinedAction.cs create mode 100755 Assets/ModelRenderer/Scripts/A3DModelReader/Common/A3DCombinedAction.cs.meta create mode 100644 Assets/ModelRenderer/Scripts/BrewMonster.meta create mode 100644 Assets/ModelRenderer/Scripts/BrewMonster/ECModel.meta create mode 100644 Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombineActHolder.cs create mode 100644 Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombineActHolder.cs.meta create mode 100755 Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombinedActionSO.cs create mode 100755 Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombinedActionSO.cs.meta diff --git a/Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男.prefab b/Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男.prefab index 997a217bbc..e06e22bb60 100644 --- a/Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男.prefab +++ b/Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男.prefab @@ -1324,6 +1324,7 @@ GameObject: - component: {fileID: 6000274837602301185} - component: {fileID: 9114627606402321429} - component: {fileID: 8328673869389635358} + - component: {fileID: 8158485627219515686} m_Layer: 0 m_Name: "\u5996\u517D\u7537" m_TagString: Untagged @@ -2324,6 +2325,19 @@ MonoBehaviour: - {fileID: 7400000, guid: bf46c8660fde0b4418e0246d5d9c504e, type: 2} - {fileID: 7400000, guid: f0e3b03a82943994e89998546be354e2, type: 2} - {fileID: 7400000, guid: 83a015f60036f8c47a958c36f5551441, type: 2} +--- !u!114 &8158485627219515686 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2105786326208748952} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 472c24b873524423f95454131fd11da6, type: 3} + m_Name: + m_EditorClassIdentifier: + combinedActionSO: {fileID: 11400000, guid: aaa221db89a7f14499cd18660718869a, type: 2} --- !u!1 &2106904235774682341 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男_CombinedActionSO.asset b/Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男_CombinedActionSO.asset new file mode 100755 index 0000000000..d136b95b3e --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男_CombinedActionSO.asset @@ -0,0 +1,31952 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efae13296c7c04fc59ae2d974329383b, type: 3} + m_Name: "\u5996\u517D\u7537_CombinedActionSO" + m_EditorClassIdentifier: + CombinedActionData: + - m_strName: "\u6697\u5668_\u901A\u7528\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6697\u5668_\u901A\u7528\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6697\u5668_\u901A\u7528\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6697\u5668_\u901A\u7528\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u767D\u864E\u53D8_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u767D\u864E\u53D8_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u62B1\u62F3_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u62B1\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u5012_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u5012_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u9000_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u88AB\u51FB\u9000_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u9000_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u88AB\u51FB\u9000_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u9000_\u5F29" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u88AB\u51FB\u9000_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u6311\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u6311\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u5954\u8DD1_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u5954\u8DD1_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u5954\u8DD1_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u5954\u8DD1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u5F29" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u5954\u8DD1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91C7\u6458\u690D\u7269_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u91C7\u6458\u690D\u7269_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91C7\u6458\u690D\u7269\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u91C7\u6458\u690D\u7269\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91C7\u6458\u690D\u7269\u7AD9\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u91C7\u6458\u690D\u7269\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u957F\u4F11\u95F2\u52A8\u4F5C\u8EAB\u4F53_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u957F\u4F11\u95F2\u52A8\u4F5C\u8EAB\u4F53_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u957F\u4F11\u95F2\u52A8\u4F5C\u5934_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u957F\u4F11\u95F2\u52A8\u4F5C\u5934_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6253\u5750_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6253\u5750\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6253\u5750\u7AD9\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750\u7AD9\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5355\u819D\u8DEA_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5355\u819D\u8DEA_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5012\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5996\u517D\u7537_\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 1350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u767B\u9646\u6F14\u6B66" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u767B\u9646\u6F14\u6B66" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5996\u517D_\u767B\u9646\u7AD9\u7ACB" + m_dwStartTime: 4950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5730\u88C2_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5730\u88C2_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5730\u88C2_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u88C2_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u88C2_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5730\u88C2_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70B9\u5934_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u70B9\u5934" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9632\u5FA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u9AD8\u7A7A\u4E0B\u964D_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u9AD8\u7A7A\u4E0B\u964D_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u9AD8\u7A7A\u4E0B\u964D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u9AD8\u7A7A\u4E0B\u964D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u6ED1\u7FD4_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u6ED1\u7FD4_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u843D\u5730_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u843D\u5730_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u8D77\u98DE_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u8D77\u98DE_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u8D77\u98DE_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u8D77\u98DE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u60AC\u505C_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u60AC\u505C_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u60AC\u505C_\u4EB2\u543B_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u60AC\u505C_\u4EB2\u543B_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u60AC\u505C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u60AC\u505C_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u543B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u98DE\u543B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u706B\u8F6E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 1025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u706B\u8F6E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 1075 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u706B\u8F6E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 1025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u706B\u8F6E_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u706B\u8F6E_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u706B\u8F6E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 1075 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u590D\u6D3B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u590D\u6D3B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9AD8\u5174_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u9AD8\u5174" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB2_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB3_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB4_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F13\u638C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F13\u638C_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BB3\u7F9E_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u5BB3\u7F9E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 1025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 1025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5486_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u5578_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u5578_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u5578_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u5578_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u5578_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u5578_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5316\u8840\u6210\u9B54_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 875 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5316\u8840\u6210\u9B54_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5316\u8840\u6210\u9B54_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 875 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5316\u8840\u6210\u9B54_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5316\u8840\u6210\u9B54_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5316\u8840\u6210\u9B54_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u57CE\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 825 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u65BD\u653E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u57CE\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 825 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u65BD\u653E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u57CE\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 825 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6361\u4E1C\u897F_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u6361\u4E1C\u897F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6361\u4E1C\u897F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u6361\u4E1C\u897F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7EDE\u6740_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7EDE\u6740_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7EDE\u6740_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7EDE\u6740_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7EDE\u6740_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CAE\u4E27_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u6CAE\u4E27" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u6D6A_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u6D6A_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u6D6A_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u6D6A_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u6D6A_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u6D6A_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 1025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 1025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F00\u9501\u5F00\u59CB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F00\u9501\u5F00\u59CB" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F00\u9501\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F00\u9501\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u7FFB\u524D\u884C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7A7A\u7FFB\u524D\u884C_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u524D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u7A7A\u4E2D\u6B7B\u4EA1\u524D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u4E0B\u843D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u7A7A\u4E2D\u6B7B\u4EA1\u4E0B\u843D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u54ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u54ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7EDE\u6740_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7EDE\u6740_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7EDE\u6740_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012old_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012old_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012old_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012old_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012old_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u6012old_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u795E\u6218\u9524_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6BC1\u5929\u706D\u5730_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u83B2\u82B1_\u62FE\u53D6\u7537\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u7537\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u83B2\u82B1_\u62FE\u53D6\u5973\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u62FE\u53D6\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 5150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u83B2\u82B1_\u9001\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9001\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9001\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 4150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6797\u4FCA\u6770\u821E\u8E48_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6797\u4FCA\u6770\u821E\u8E48" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u73AB\u7470_\u62FE\u53D6\u7537\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u7537\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u73AB\u7470_\u62FE\u53D6\u5973\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u62FE\u53D6\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 5150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u73AB\u7470_\u9001\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9001\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9001\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 4150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7834\u7532\u4E00\u51FB_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7834\u7532\u4E00\u51FB_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB1_\u5F13\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8D77\u8DF3_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u8D77\u8DF3_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8D77\u8DF3_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u8D77\u8DF3_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8D77\u8DF3_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u8D77\u8DF3_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8D77\u8DF3_\u5F29" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u8D77\u8DF3_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5343\u65A4\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5343\u65A4\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5343\u65A4\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5343\u65A4\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B_\u6807\u51C6\u5973_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B\u7ED3\u675F_\u6807\u51C6\u5973_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B\u7ED3\u675F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B\u5FAA\u73AF_\u6807\u51C6\u5973_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E0A\u8F7D\u5177_\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E0A\u8F7D\u5177" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E0A\u8F7D\u5177\u843D" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F38\u61D2\u8170_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u4F38\u61D2\u8170" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F38\u61D2\u8170_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u4F38\u61D2\u8170" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u751F\u6C14_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u751F\u6C14" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u80DC\u5229_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u80DC\u5229" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_2016\u8377\u82B1\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u62F3\u5957_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_vip\u767E\u5408\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u767E\u5408\u62F3\u5957_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_vip\u767E\u5408\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u767E\u5408\u53CC\u624B\u957F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_vip\u767E\u5408\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u767E\u5408\u53CC\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u82AD\u8549\u6247\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u82AD\u8549\u6247\u53CC\u624B\u957F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u68D2\u7403\u624B\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u68D2\u7403\u624B\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u97AD\u70AE_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u97AD\u70AE" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62E8\u6D6A\u9F13\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u62E8\u6D6A\u9F13\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62E8\u6D6A\u9F13\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u62E8\u6D6A\u9F13\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5927\u867E\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u5927\u867E\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u706F\u7B3C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u706F\u7B3C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9489\u8019_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u9489\u8019" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u6D77\u87BA\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u6D77\u87BA\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u8377\u82B1\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u53CC\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7EA2\u767D\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u7EA2\u767D\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7EA2\u767D\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u7EA2\u767D\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7EA2\u767D\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u7EA2\u767D\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u80E1\u7434_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u80E1\u7434" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u82B1\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8138\u8C31\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u8138\u8C31\u62F3\u5957_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9F99\u5934\u68D2\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u9F99\u5934\u68D2\u53CC\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u957F\u5175_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u957F\u5175" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u77ED\u5175_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u77ED\u5175" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9B54\u955C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9B54\u955C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62F3\u51FB\u624B\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u62F3\u51FB\u624B\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62F3\u5957\u83E0\u841D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u65F6\u88C5\u6B66\u5668_\u62F3\u5957\u83E0\u841D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62F3\u5957\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u62F3\u5957\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u72EE\u5B50\u624B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u72EE\u5B50\u624B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u706F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u706F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u7518\u8517_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u7518\u8517" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u82B12_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u82B12_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u83B2\u85D5\u4E4B\u9524_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u83B2\u85D5\u4E4B\u9524" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u94C1\u9539_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u94C1\u9539" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u4E94\u661F\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u4E94\u661F\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u5927\u8471_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u77ED\u5927\u8471" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u82B1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u5C0F\u6728\u69CC_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u77ED\u5C0F\u6728\u69CC" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53F0\u82B1\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u53F0\u82B1\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53F0\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u53F0\u82B1\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53F0\u82B1\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u53F0\u82B1\u53CC\u624B\u77ED\u5200" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u62F3\u5957_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u53CC\u624B\u957F\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u53CC\u624B\u957F\u6756_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u53CC\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u846B\u82A6\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u7CD6\u846B\u82A6\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5929\u9E45\u957F\u5175_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5929\u9E45\u957F\u5175" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u94DC\u9572_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u94DC\u9572" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5C0F\u9E21\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u5C0F\u9E21\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5C0F\u9E21\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u5C0F\u9E21\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5C0F\u9E21\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u5C0F\u9E21\u53CC\u624B\u77ED\u9524" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u65B017\u54C1\u53CC\u624B\u957F\u9524_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u65B017\u54C1\u53CC\u624B\u957F\u9524_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u718A\u732B\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u718A\u732B\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u718A\u732B\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u718A\u732B\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u718A\u732B\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D_\u4F11\u95F2_\u718A\u732B\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u96EA\u82B1\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u96EA\u82B1\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u96EA\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u96EA\u82B1\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u96EA\u82B1\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u96EA\u82B1\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7389\u7C73\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u7389\u7C73\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u7075\u4E4B\u529B_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u7075\u4E4B\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9524_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9524_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u65E0\u654C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u65E0\u654C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u65E0\u654C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u517D\u738B\u65E0\u654C_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u65E0\u654C_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u65E0\u654C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6454\u5012_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6454\u5012" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6454\u5012\u5FAA\u73AF" + m_dwStartTime: 1225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C34\u4E0B\u6B7B\u4EA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u6C34\u4E0B\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C34\u4E0B\u6B7B\u4EA1\u6F02\u6D6E_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u6C34\u4E0B\u6B7B\u4EA1\u6F02\u6D6E_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C34\u4E2D\u6F02\u6D6E_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u6C34\u4E2D\u6F02\u6D6E_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u601D\u8003_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u601D\u8003" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DB\u5904\u5F20\u671B_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u56DB\u5904\u5F20\u671B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DB\u5904\u5F20\u671B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u56DB\u5904\u5F20\u671B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8038\u80A9\u8180_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u8038\u80A9\u8180" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9001\u4E1C\u897F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9001\u4E1C\u897F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u762B\u75EA_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u762B\u75EA_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u6311\u8845" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u7FFB\u6EDA_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u7FFB_\u7A7A\u7FFB\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u7FFB\u6EDA_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u7FFB_\u7A7A\u7FFB\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u8DF3\u8DC3\u843D\u5730_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u8DF3\u8DC3\u843D\u5730_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u8DF3\u8DC3\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u88AB\u52A8" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537\u540C\u6027\u88AB\u52A8" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u88AB\u52A82" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537\u540C\u6027\u88AB\u52A82" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u4E3B\u52A8" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537\u540C\u6027\u4E3B\u52A8" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u4E3B\u52A82" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537\u540C\u6027\u4E3B\u52A82" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u754F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u754F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u754F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u754F_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u754F_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u754F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u821E\u8E48_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u566C\u8840_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u566C\u8840_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u566C\u8840_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 700 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5DE8\u7075\u795E\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 3375 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 4400 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u706B\u8F6E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 5350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u53D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5411\u524D\u51B2\u950B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u51B2\u950B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u571F_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524\u571F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65B0\xB7\u5343\u65A4\u9524_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u884C\u8D70_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u884C\u8D70_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u884C\u8D70_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u884C\u8D70_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F11\u95F2_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u4F11\u95F2_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u767D\u864E\u53D8_\u901A\u7528_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5996\u517D\u4E0E\u5996\u517D\u8C03\u60C5_\u88AB\u52A8" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537\u540C\u6027\u88AB\u52A8" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5996\u517D\u4E0E\u5996\u517D\u8C03\u60C5_\u88AB\u52A82" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537\u540C\u6027\u88AB\u52A82" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5996\u517D\u4E0E\u5996\u517D\u8C03\u60C5_\u4E3B\u52A8" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537\u5996\u517D\u540C\u6027\u4E3B\u52A8" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5996\u517D\u4E0E\u5996\u517D\u8C03\u60C5_\u4E3B\u52A82" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537\u5996\u517D\u540C\u6027\u4E3B\u52A82" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6447\u5934_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u6447\u5934" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F02\u6027\u8C03\u60C5" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F02\u6027\u8C03\u60C5" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F02\u6027\u8C03\u60C52" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F02\u6027\u8C03\u60C52" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u62E5\u62B1_\u6807\u51C6\u5973_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62E5\u62B1_\u6807\u51C6\u5973_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6E38\u52A8_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u6E38\u52A8_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u539F\u59CB\u91CE\u6027_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u517D\u738B\u9F13\u821E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6655\u5012\u53CA\u7AD9\u7ACB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u6655\u5012\u53CA\u7AD9\u7ACB" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6218\u6597_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u6218\u6597\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u6218\u6597\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u6218\u6597\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u7AD9\u7ACB_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u7AD9\u7ACB_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u4EB2\u543B_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B_\u7ED1\u5B9A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u4EB2\u543B_\u53CC\u9A91_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u4EB2\u543B_\u53CC\u9A91_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996\u517D\u7537_\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F20\u671B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u56DB\u5904\u5F20\u671B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u62DB\u624B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u62DB\u624B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6B63\u5750_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6253\u5750\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 1675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8F6C\u52A8\u5175\u5668_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u8F6C\u52A8\u5175\u5668_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8F6C\u52A8\u5175\u5668_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u8F6C\u52A8\u5175\u5668_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u4E0B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u5750\u4E0B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u4E0B\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u5750\u4E0B\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u4E0B\u7AD9\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5996_\u5750\u4E0B\u7AD9\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u6905\u5B50_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5750\u6905\u5B50_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 diff --git a/Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男_CombinedActionSO.asset.meta b/Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男_CombinedActionSO.asset.meta new file mode 100755 index 0000000000..2ccc824da3 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/形象/妖兽男/躯干/妖兽男_CombinedActionSO.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aaa221db89a7f14499cd18660718869a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男.prefab b/Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男.prefab index 3dac87694c..24a7d43b60 100644 --- a/Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男.prefab +++ b/Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男.prefab @@ -1937,6 +1937,7 @@ GameObject: - component: {fileID: 4760280378842097466} - component: {fileID: 3664697042232086950} - component: {fileID: 6057715007290216867} + - component: {fileID: 4125229131285412072} m_Layer: 0 m_Name: A3DSkinnedMeshRenderer_PlayerCharacter(Clone) m_TagString: Untagged @@ -3316,6 +3317,19 @@ MonoBehaviour: - {fileID: 7400000, guid: b9c1b4aacfc88174f9bfcb8bf1c69eb5, type: 2} - {fileID: 7400000, guid: d54a450816dbc4d4ca43afbe607052ad, type: 2} - {fileID: 7400000, guid: cbff0726770bb1146bc70346d5fc38f9, type: 2} +--- !u!114 &4125229131285412072 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2570164803878810249} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 472c24b873524423f95454131fd11da6, type: 3} + m_Name: + m_EditorClassIdentifier: + combinedActionSO: {fileID: 11400000, guid: d4104c42c72cca647b9ebec0d6d35089, type: 2} --- !u!1 &2587141697474146175 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男_CombinedActionSO.asset b/Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男_CombinedActionSO.asset new file mode 100755 index 0000000000..ccfe9ec842 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男_CombinedActionSO.asset @@ -0,0 +1,57865 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efae13296c7c04fc59ae2d974329383b, type: 3} + m_Name: "\u6B66\u4FA0\u7537_CombinedActionSO" + m_EditorClassIdentifier: + CombinedActionData: + - m_strName: "\u6697\u5668_\u901A\u7528\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6697\u5668_\u901A\u7528\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6697\u5668_\u901A\u7528\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6697\u5668_\u901A\u7528\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 875 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 875 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 875 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u66B4\u6012_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 875 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 825 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 825 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 825 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 825 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u9F99\u98DE_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u732E\u9F0E_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u62B1\u62F3_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62B1\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u5012_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u5012_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u6C34\u4E2D_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u6C34\u4E2D_\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u6C34\u4E2D_\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u9000_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u9000_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u9000_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u9000_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u6311\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u6311\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5954\u8DD1_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5954\u8DD1_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5954\u8DD1_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5954\u8DD1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91C7\u6458\u690D\u7269_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u91C7\u6458\u690D\u7269_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91C7\u6458\u690D\u7269\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u91C7\u6458\u690D\u7269\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91C7\u6458\u690D\u7269\u7AD9\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u91C7\u6458\u690D\u7269\u7AD9\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u957F\u4F11\u95F2\u52A8\u4F5C\u8EAB\u4F53_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u957F\u4F11\u95F2\u52A8\u4F5C\u8EAB\u4F53_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u957F\u4F11\u95F2\u52A8\u4F5C\u5934_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u957F\u4F11\u95F2\u52A8\u4F5C\u5934_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u521B\u4E16\xB7\u6B66\u795E\u9644\u4F53_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BF8\u529B_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BF8\u529B_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BF8\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BF8\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BF8\u529B_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BF8\u529B_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BF8\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BF8\u529B_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BF8\u529B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6253\u5750_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6253\u5750\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6253\u5750\u7AD9\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750\u7AD9\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5355\u819D\u8DEA_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5355\u819D\u8DEA_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5012\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 3225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u767B\u9646\u6F14\u6B66" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u767B\u9646\u6F14\u6B66" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6B66\u4FA0\u7537_\u767B\u9646\u7AD9\u7ACB" + m_dwStartTime: 2425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70B9\u5934_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70B9\u5934" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6597\u5FD7_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6597\u5FD7_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6597\u5FD7_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6597\u5FD7_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6597\u5FD7_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6597\u5FD7_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9632\u5FA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9632\u5FA1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9632\u5FA1\u5FAA\u73AF" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u9AD8\u7A7A\u4E0B\u964D_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u9AD8\u7A7A\u4E0B\u964D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u6ED1\u7FD4_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u6ED1\u7FD4_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u843D\u5730_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u843D\u5730_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u8D77\u98DE_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u8D77\u98DE_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u8D77\u98DE_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u8D77\u98DE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u60AC\u505C_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u60AC\u505C_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u60AC\u505C_\u4EB2\u543B_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B_\u7ED1\u5B9A_\u98DE\u5251" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u60AC\u505C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u60AC\u505C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u543B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u543B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u590D\u6D3B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u590D\u6D3B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9AD8\u5174_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9AD8\u5174" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB2_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB3_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB4_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F13\u638C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F13\u638C_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BB3\u7F9E_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BB3\u7F9E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6A2A\u626B\u5343\u519B_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6A2A\u626B\u5343\u519B\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u51FB_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u51FB_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u51FB_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u51FB_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u51FB_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u51FB_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u51FB_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u51FB_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u51FB\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u8DC3_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u8DC3_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u8DC3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u8DC3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u8DC3_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u8DC3_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u8DC3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u8DC3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u57CE\u5FAA\u73AF" + m_dwStartTime: 825 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u65BD\u653E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u57CE\u5FAA\u73AF" + m_dwStartTime: 825 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u65BD\u653E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u57CE\u5FAA\u73AF" + m_dwStartTime: 825 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u9A6C\u67AA_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u65CB\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u65CB\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u65CB\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u65CB\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u65CB\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u65CB\u51FB_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u65CB\u51FB_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u65CB\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u65CB\u51FB_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u65CB\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u65CB\u51FB_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u65CB\u51FB_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u65CB\u51FB_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u65CB\u51FB_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u75BE\u98CE\u9739\u96F3_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6361\u4E1C\u897F_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6361\u4E1C\u897F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6361\u4E1C\u897F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6361\u4E1C\u897F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5251\u6C14\u7EB5\u6A2A_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91D1\u949F\u7F69_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CAE\u4E27_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CAE\u4E27" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F00\u9501\u5F00\u59CB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F00\u9501\u5F00\u59CB" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F00\u9501\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F00\u9501\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u7FFB\u524D\u884C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7A7A\u7FFB\u524D\u884C_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u524D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u524D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u4E0B\u843D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u4E0B\u843D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u54ED\u6CE3_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u54ED\u6CE3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u98CE_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u98CE_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u98CE_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72C2\u98CE_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u98CE_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u98CE_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u98CE_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u98CE_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u98CE_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72C2\u98CE_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72C2\u98CE_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72C2\u9F99\u65A9_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65AD\u5CA9\u65A9_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u9706\u9707\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u9706\u9707\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u9706\u9707\u51FB_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u8DC3_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u9706\u9707\u51FB_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u9706\u9707\u51FB_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u96F7\u9706\u9707\u51FB_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u864E\u8DC3_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u8DC3_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u83B2\u82B1_\u62FE\u53D6\u7537\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u7537\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u83B2\u82B1_\u62FE\u53D6\u5973\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u62FE\u53D6\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 4950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u83B2\u82B1_\u9001\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9001\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9001\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 3950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6797\u4FCA\u6770\u821E\u8E48_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6797\u4FCA\u6770\u821E\u8E48" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u6C34_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u6C34_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u6C34_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u6C34_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u6C34_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u6C34_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u6C34_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u6C34_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u6C34_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D41\u661F\u8D76\u6708_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 250 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u4F9D_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u4F9D_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u4F9D_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u4F9D_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u4F9D_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u4F9D_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u4F9D_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u4F9D_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u4F9D_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u4F9D_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u4F9D_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u4F9D_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u4F9D_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u4F9D_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u722A\u624B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u722A\u624B_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u722A\u624B_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u722A\u624B_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u722A\u624B_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u722A\u624B_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F99\u722A\u624B_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u722A\u624B_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u73AB\u7470_\u62FE\u53D6\u7537\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u7537\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u73AB\u7470_\u62FE\u53D6\u5973\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u62FE\u53D6\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 4950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u73AB\u7470_\u9001\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9001\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9001\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 3950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5288\u7A7A\u638C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7834\u5929_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8D77\u8DF3_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8D77\u8DF3_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8D77\u8DF3_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8D77\u8DF3_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8D77\u8DF3_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8D77\u8DF3_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B_\u6807\u51C6\u5973_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B_\u6CD5\u5E08\u5973" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B\u7ED3\u675F_\u6807\u51C6\u5973_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B\u7ED3\u675F_\u6CD5\u5E08\u5973" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B\u5FAA\u73AF_\u6807\u51C6\u5973_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B\u5FAA\u73AF_\u6CD5\u5E08\u5973" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7FA4\u4F53\u7269\u7ECF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7FA4\u4F53\u7269\u7ECF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7FA4\u4F53\u7269\u7ECF_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7FA4\u4F53\u7269\u7ECF_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7FA4\u4F53\u7269\u7ECF_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7FA4\u4F53\u7269\u7ECF_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E0A\u8F7D\u5177_\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E0A\u8F7D\u5177" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E0A\u8F7D\u5177\u843D" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F38\u61D2\u8170_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F38\u61D2\u8170_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F38\u61D2\u8170_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F38\u61D2\u8170_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u65AD\u6C34\u51CC\u98CE_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51CC\u98CE\u6539_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u795E\xB7\u5BD2\u51B0\u5203\u57DF_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u751F\u6C14_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u751F\u6C14" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u80DC\u5229_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u80DC\u5229" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u72EE\u5B50\u543C_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_2016\u8377\u82B1\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u62F3\u5957_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_vip\u767E\u5408\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u767E\u5408\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_vip\u767E\u5408\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u767E\u5408\u62F3\u5957_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_vip\u767E\u5408\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u767E\u5408\u53CC\u624B\u957F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_vip\u767E\u5408\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u767E\u5408\u53CC\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u82AD\u8549\u6247\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u82AD\u8549\u6247\u53CC\u624B\u957F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5DF4\u638C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u5DF4\u638C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u68D2\u7403\u68CD_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u68D2\u7403\u68CD" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u68D2\u7403\u624B\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u68D2\u7403\u624B\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u97AD\u70AE_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u97AD\u70AE" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u51B0\u6DC7\u6DCB\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u51B0\u6DC7\u6DCB\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62E8\u6D6A\u9F13\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u62E8\u6D6A\u9F13\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62E8\u6D6A\u9F13\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u62E8\u6D6A\u9F13\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5927\u867E\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u5927\u867E\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u80E1\u841D\u535C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u65F6\u88C5\u6B66\u5668_\u5355\u624B\u77ED\u80E1\u841D\u535C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u82B12_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u82B12_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u82B1\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u4E94\u661F\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u5355\u624B\u77ED\u4E94\u661F\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u9999\u8549_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u65F6\u88C5\u6B66\u5668_\u5355\u624B\u77ED\u9999\u8549" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u5355\u624B\u77ED\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u5251\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u5355\u624B\u77ED\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u706F\u7B3C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u706F\u7B3C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7B1B\u5B50\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u7B1B\u5B50\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9489\u8019_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u9489\u8019" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53E4\u4F1E\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53E4\u4F1E\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u6D77\u87BA\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u6D77\u87BA\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u77ED\u6756\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u77ED\u6756\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u8377\u82B1\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u53CC\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9ED1\u4F1E_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9ED1\u4F1E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7EA2\u767D\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u7EA2\u767D\u5355\u624B\u77ED\u5251" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7EA2\u767D\u77ED\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u7EA2\u767D\u5355\u624B\u77ED\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7EA2\u767D\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u7EA2\u767D\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7EA2\u767D\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u7EA2\u767D\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7EA2\u767D\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u7EA2\u767D\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u80E1\u7434_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u80E1\u7434" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u82B1\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8138\u8C31\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u8138\u8C31\u62F3\u5957_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9F99\u5934\u68D2\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u9F99\u5934\u68D2\u53CC\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9F99\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u9F99\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u957F\u5175_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u957F\u5175" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u77ED\u5175_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u77ED\u5175" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9B54\u955C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9B54\u955C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62F3\u51FB\u624B\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u62F3\u51FB\u624B\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62F3\u5957\u83E0\u841D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u65F6\u88C5\u6B66\u5668_\u62F3\u5957\u83E0\u841D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62F3\u5957\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u62F3\u5957\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u72EE\u5B50\u624B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u72EE\u5B50\u624B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u706F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u706F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u7518\u8517_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u7518\u8517" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u82B12_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u82B12_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u83B2\u85D5\u4E4B\u9524_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u83B2\u85D5\u4E4B\u9524" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u94C1\u9539_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u94C1\u9539" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u4E94\u661F\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u4E94\u661F\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u5927\u8471_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u77ED\u5927\u8471" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u82B1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u5C0F\u6728\u69CC_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u77ED\u5C0F\u6728\u69CC" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u77ED\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53F0\u82B1\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u53F0\u82B1\u5355\u624B\u77ED\u5251" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53F0\u82B1\u77ED\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u53F0\u82B1\u5355\u624B\u77ED\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53F0\u82B1\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u53F0\u82B1\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53F0\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u53F0\u82B1\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53F0\u82B1\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u53F0\u82B1\u53CC\u624B\u77ED\u5200" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u62F3\u5957_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u53CC\u624B\u957F\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u53CC\u624B\u957F\u6756_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u53CC\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u846B\u82A6_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u846B\u82A6" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u846B\u82A6\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u7CD6\u846B\u82A6\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5929\u9E45\u957F\u5175_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5929\u9E45\u957F\u5175" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5929\u9E45\u77ED\u5175_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5929\u9E45\u77ED\u5175" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u94DC\u9572_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u94DC\u9572" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9999\u80A0\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u9999\u80A0\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5C0F\u9E21\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u5C0F\u9E21\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5C0F\u9E21\u77ED\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u5C0F\u9E21\u5355\u624B\u77ED\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5C0F\u9E21\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u5C0F\u9E21\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5C0F\u9E21\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u5C0F\u9E21\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5C0F\u9E21\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u5C0F\u9E21\u53CC\u624B\u77ED\u9524" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u65B017\u54C1\u53CC\u624B\u957F\u9524_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u65B017\u54C1\u53CC\u624B\u957F\u9524_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u718A\u732B\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u718A\u732B\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u718A\u732B\u77ED\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u718A\u732B\u77ED\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u718A\u732B\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u718A\u732B\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u718A\u732B\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u718A\u732B\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u718A\u732B\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6B66\u4FA0\u7537_\u4F11\u95F2_\u718A\u732B\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u96EA\u82B1\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u96EA\u82B1\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u96EA\u82B1\u62F3\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u96EA\u82B1\u62F3\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u96EA\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u96EA\u82B1\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u96EA\u82B1\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u96EA\u82B1\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7389\u7C73\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u7389\u7C73\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u6C34\u4E2D_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u6C34\u4E2D_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u6C34\u4E2D_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6454\u5012_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6454\u5012" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6454\u5012\u5FAA\u73AF" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C34\u4E0B\u6B7B\u4EA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C34\u4E0B\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C34\u4E0B\u6B7B\u4EA1\u6F02\u6D6E_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C34\u4E0B\u6B7B\u4EA1\u98D8\u6D6E_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C34\u4E2D\u6F02\u6D6E_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C34\u4E2D\u6F02\u6D6E_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u601D\u8003_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u601D\u8003" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DB\u5904\u5F20\u671B_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DB\u5904\u5F20\u671B_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DB\u5904\u5F20\u671B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DB\u5904\u5F20\u671B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8038\u80A9\u8180_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8038\u80A9\u8180" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9001\u4E1C\u897F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9001\u4E1C\u897F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u788E\u9885_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u788E\u9885_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u788E\u9885_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u788E\u9885_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u788E\u9885_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u788E\u9885_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u788E\u9885_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u788E\u9885_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u788E\u9885_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u788E\u9885_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u788E\u9885_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u788E\u9885_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u788E\u9885_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u788E\u9885_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u762B\u75EA_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u762B\u75EA_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u84C4\u6C14_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6311\u8845" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u84C4\u6C14_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u7FFB\u6EDA_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u7FFB_\u7A7A\u7FFB\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u7FFB\u6EDA_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u7FFB_\u7A7A\u7FFB\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u88AB\u52A8" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u540C\u6027\u88AB\u52A8" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u88AB\u52A82" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u540C\u6027\u88AB\u52A82" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u4E3B\u52A8" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u540C\u6027\u4E3B\u52A8" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u4E3B\u52A82" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u540C\u6027\u4E3B\u52A82" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E07\u5251\u8BC0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5FD8\u60C5\u5F0F_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F99\u73B0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9F99\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u65E0\u5F71\u811A_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u821E\u8E48_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u98CE\u5377\u6B8B\u4E91_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u864E\u8DC3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 775 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 1600 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9738\u738B\u65AD\u5CB3_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 1950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5411\u524D\u51B2\u950B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5411\u524D\u51B2\u950B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u884C\u8D70_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u884C\u8D70_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u884C\u8D70_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u884C\u8D70_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F11\u95F2_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F11\u95F2_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u84C4\u6C14_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u84C4\u6C14_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6447\u5934_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6447\u5934" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 1225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E00\u95EA_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 1225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F02\u6027\u8C03\u60C5" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F02\u6027\u8C03\u60C5" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F02\u6027\u8C03\u60C52" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F02\u6027\u8C03\u60C52" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u62E5\u62B1_\u6807\u51C6\u5973_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62E5\u62B1_\u6807\u51C6\u5973_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6E38\u52A8_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6E38\u52A8_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531\u5FAA\u73AF_\u7A7A\u62F3" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E91\u9F99\u4E5D\u73B0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6655\u5012\u53CA\u7AD9\u7ACB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6655\u5012\u53CA\u7AD9\u7ACB" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6218\u6597_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u4EB2\u543B_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B_\u7ED1\u5B9A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u4EB2\u543B_\u53CC\u9A91_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u4EB2\u543B_\u53CC\u9A91_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F20\u671B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DB\u5904\u5F20\u671B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u62DB\u624B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62DB\u624B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6B63\u5750_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6253\u5750\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 2675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u81F4\u656C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u81F4\u656C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8F6C\u52A8\u5175\u5668_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8F6C\u52A8\u5175\u5668_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8F6C\u52A8\u5175\u5668_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8F6C\u52A8\u5175\u5668_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 1225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u843D_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u65BD\u653E\u8D77_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u5355\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531\u5FAA\u73AF_\u5355\u624B\u77ED" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u53CC\u624B\u77ED" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531_\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8FFD\u9B42\u8BC0_\u541F\u5531\u5FAA\u73AF_\u53CC\u624B\u77ED" + m_dwStartTime: 1225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u81EA\u8EAB\u65CB\u8F6C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u81EA\u8EAB\u65CB\u8F6C_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u4E0B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5750\u4E0B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u4E0B\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5750\u4E0B\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u4E0B\u7AD9\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5750\u4E0B\u7AD9\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u6905\u5B50_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5750\u6905\u5B50_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 diff --git a/Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男_CombinedActionSO.asset.meta b/Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男_CombinedActionSO.asset.meta new file mode 100755 index 0000000000..4bcfcd4457 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/形象/武侠男/躯干/武侠男_CombinedActionSO.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d4104c42c72cca647b9ebec0d6d35089 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab b/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab index 008a909eaa..71594ace15 100644 --- a/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab +++ b/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab @@ -4879,6 +4879,7 @@ GameObject: - component: {fileID: 6264607540402582859} - component: {fileID: 2789629435814780223} - component: {fileID: 4504844427513838873} + - component: {fileID: 5130781569853185460} m_Layer: 0 m_Name: "\u6CD5\u5E08\u5973" m_TagString: Untagged @@ -5946,6 +5947,19 @@ MonoBehaviour: - {fileID: 7400000, guid: 3e474cefdc0b2e648aec98c966f26991, type: 2} - {fileID: 7400000, guid: 37c12771675cd69499260a8cadf95621, type: 2} - {fileID: 7400000, guid: f343209405aa0f7469aeb6429b1fc5a5, type: 2} +--- !u!114 &5130781569853185460 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5133661830825835001} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 472c24b873524423f95454131fd11da6, type: 3} + m_Name: + m_EditorClassIdentifier: + combinedActionSO: {fileID: 11400000, guid: ccf54ff0e6d1e8542a9183e8defc97e4, type: 2} --- !u!1 &5156671091954275778 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女_CombinedActionSO.asset b/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女_CombinedActionSO.asset new file mode 100755 index 0000000000..e33e24170e --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女_CombinedActionSO.asset @@ -0,0 +1,26721 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efae13296c7c04fc59ae2d974329383b, type: 3} + m_Name: "\u6CD5\u5E08\u5973_CombinedActionSO" + m_EditorClassIdentifier: + CombinedActionData: + - m_strName: "\u6697\u5668_\u901A\u7528\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6697\u5668_\u901A\u7528\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6697\u5668_\u901A\u7528\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6697\u5668_\u901A\u7528\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u62B1\u62F3_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62B1\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7206\u6C14_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7206\u6C14_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u5012_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u5012_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u98DE\u5251_\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u6C34\u4E2D_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u6C34\u4E2D_\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u98DE_\u6C34\u4E2D_\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u98DE_\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u9000_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u9000_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u51FB\u9000_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u51FB\u9000_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u88AB\u6311\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u88AB\u6311\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5954\u8DD1_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5954\u8DD1_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u53CC\u9A91_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u53CC\u9A91_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5954\u8DD1_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5954\u8DD1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5954\u8DD1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u907F\u6C34\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u907F\u6C34\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u907F\u6C34\u8BC0_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u907F\u6C34\u8BC0_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u907F\u6C34\u8BC0_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u907F\u6C34\u8BC0_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528_1" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u843D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528_2" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u843D2" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528_1" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u8D771" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528_2" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u8D772" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 2025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u843D_\u901A\u7528_1" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u843D1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u843D_\u901A\u7528_2" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u843D2" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u8D77_\u901A\u7528_1" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u8D771" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u8D77_\u901A\u7528_2" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u65BD\u653E\u8D772" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51B0\u706B\u4E24\u91CD\u5929_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 2025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u6676\u4E16\u754C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u6676\u4E16\u754C_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u6676\u4E16\u754C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u6676\u4E16\u754C_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u6676\u4E16\u754C_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u6676\u4E16\u754C_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51B0\u6676\u4E16\u754C_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1875 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u6676\u4E16\u754C_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u6676\u4E16\u754C_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u6676\u4E16\u754C_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u6676\u4E16\u754C_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51B0\u6676\u4E16\u754C_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u51B0\u6676\u4E16\u754C_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u51B0\u6676\u4E16\u754C_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1875 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91C7\u6458\u690D\u7269_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u91C7\u6458\u690D\u7269_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91C7\u6458\u690D\u7269\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u91C7\u6458\u690D\u7269\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u91C7\u6458\u690D\u7269\u7AD9\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u91C7\u6458\u690D\u7269\u7AD9\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u957F\u4F11\u95F2\u52A8\u4F5C\u8EAB\u4F53_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u957F\u4F11\u95F2\u52A8\u4F5C_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u957F\u4F11\u95F2\u52A8\u4F5C\u5934_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u957F\u4F11\u95F2\u52A8\u4F5C\u5934_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u521B\u4E16\xB7\u6CD5\u795E\u9644\u4F53_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6253\u5750_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6253\u5750\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6253\u5750\u7AD9\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750\u7AD9\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5012\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 2275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u767B\u9646\u6F14\u6B66" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u767B\u9646\u6F14\u6B66" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6CD5\u5E08\u5973_\u767B\u9646\u7AD9\u7ACB" + m_dwStartTime: 4875 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u7F1A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u65BD\u653E\u843D" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u7F1A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u7F1A_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u7F1A_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u65BD\u653E\u843D" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u7F1A_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u7F1A_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70B9\u5934_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70B9\u5934" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 3475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6CD5\u4E4B\u5965\u4E49_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 3475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9632\u5FA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8840\u796D\u708E\u7206_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8840\u796D\u708E\u7206_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u9AD8\u7A7A\u4E0B\u964D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u4F4E\u7A7A\u4E0B\u964D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u6ED1\u7FD4_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u8D77\u98DE_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u8D77\u98DE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u524D\u8FDB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u5251\u60AC\u505C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u60AC\u505C_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u6C99\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D8C\u6CC9_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u6C99\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D8C\u6CC9_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u6C99\u672F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u6C99\u672F_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D8C\u6CC9_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u6C99\u672F_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D8C\u6CC9_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u6C99\u672F_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u98DE\u543B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u543B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u629A\u6478_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u629A\u6469_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u590D\u6D3B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u590D\u6D3B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9AD8\u5174_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9AD8\u5174" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_dwStartTime: 275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB2_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB3_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u653B\u51FB4_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_dwStartTime: 425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9F13\u638C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9F13\u638C_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BB3\u7F9E_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BB3\u7F9E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u76FE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u76FE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u76FE_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u76FE_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u76FE_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u76FE_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BD2\u51B0\u62A4\u7532_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u9732_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u9732_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u9732_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u9732_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u9732_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u9732_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u971C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u971C_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u971C_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u971C_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u971C_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u971C_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BD2\u971C_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u971C_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u971C_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u971C_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u971C_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5BD2\u971C_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5BD2\u971C_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5BD2\u971C_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u57CE\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 1350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u65BD\u653E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u57CE\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 1350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u65BD\u653E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DE\u57CE\u672F_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u56DE\u57CE_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u56DE\u57CE\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 1350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u6D77\u5200\u5C71_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u6D77\u5200\u5C71_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u6D77\u5200\u5C71_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u706B\u6D77\u5200\u5C71_\u541F\u5531" + m_dwStartTime: 2275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u6D77\u5200\u5C71_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u706B\u6D77\u5200\u5C71_\u541F\u5531" + m_dwStartTime: 2275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u715E\u5929\u706F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u715E\u5929\u706F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u715E\u5929\u706F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u70C8\u706B\u7B26_\u541F\u5531" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u715E\u5929\u706F_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u715E\u5929\u706F_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u706B\u715E\u5929\u706F_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u70C8\u706B\u7B26_\u541F\u5531" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6361\u4E1C\u897F_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6361\u4E1C\u897F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6361\u4E1C\u897F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6361\u4E1C\u897F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F2_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F2_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F2_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F2_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F2_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F2_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9759\u8C27\u4E4B\u672F_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CAE\u4E27_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CAE\u4E27" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F00\u9501\u5F00\u59CB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F00\u9501\u5F00\u59CB" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F00\u9501\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F00\u9501\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u7FFB\u524D\u884C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7A7A\u7FFB\u524D\u884C_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u9762\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u524D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u524D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u4E0B\u843D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u4E0B\u843D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7A7A\u4E2D\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5730\u9762\u6B7B\u4EA1\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u54ED\u6CE3_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u54ED\u6CE3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u83B2\u82B1_\u62FE\u53D6\u7537\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u62FE\u53D6\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 5075 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u83B2\u82B1_\u62FE\u53D6\u5973\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u5973\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u83B2\u82B1_\u9001\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9001\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9001\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 3950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u706B\u7B26_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u706B\u7B26_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u706B\u7B26_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u70C8\u706B\u7B26_\u541F\u5531" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u706B\u7B26_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u70C8\u706B\u7B26_\u541F\u5531" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u76FE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u76FE_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u76FE_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u76FE_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u76FE_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u76FE_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u7130\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u7130\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u7130\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u70C8\u7130\u62A4\u7532_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u62A4\u7532_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u7130\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u62A4\u7532_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u7130\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u70C8\u7130\u62A4\u7532_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u7130\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u70C8\u7130\u62A4\u7532_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6797\u4FCA\u6770\u821E\u8E48_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6797\u4FCA\u6770\u821E\u8E48" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u6740_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u6740_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u6740_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u6740_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u6740_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u51CC\u6740_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u843D\u77F3\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u843D\u77F3\u672F_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u843D\u77F3\u672F_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u73AB\u7470_\u62FE\u53D6\u7537\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u62FE\u53D6\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 5075 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u73AB\u7470_\u62FE\u53D6\u5973\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62FE\u53D6\u5973\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u73AB\u7470_\u9001\u70DF\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9001\u70DF\u82B1" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u9001\u70DF\u82B1\u5FAA\u73AF" + m_dwStartTime: 3950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9B54\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u78D0\u77F3\u62A4\u7532_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75B2\u60EB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75B2\u60EB_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75B2\u60EB_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u98DE\u5251\u60AC\u505C_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75B2\u60EB_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75B2\u60EB_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u75B2\u60EB_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB2_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5355\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u5355\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u5F13\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB1_\u5F13\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u7A7A\u62F3\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u62F3\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u7A7A\u4E2D\u98DE\u5251_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u957F\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u843D" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u666E\u901A\u653B\u51FB4_\u53CC\u624B\u77ED\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u666E\u901A\u653B\u51FB3_\u53CC\u624B\u77ED\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8D77\u8DF3_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8D77\u8DF3_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8D77\u8DF3_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8D77\u8DF3_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8D77\u8DF3_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8D77\u8DF3_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C14\u60EF\u957F\u8679_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C14\u60EF\u957F\u8679_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C14\u60EF\u957F\u8679_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C14\u60EF\u957F\u8679_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C14\u60EF\u957F\u8679_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C14\u60EF\u957F\u8679_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5947\u95E8\u62A4\u7532_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u5947\u95E8\u62A4\u7532_\u541F\u5531" + m_dwStartTime: 1550 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B_\u7ED1\u5B9A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B_\u6807\u51C6\u7537_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B_\u6B66\u4FA0\u7537" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B_\u53CC\u9A91_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B_\u53CC\u9A91_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B_\u5996\u517D\u7537_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B_\u5996\u517D\u7537" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B\u7ED3\u675F_\u6807\u51C6\u7537_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B\u7ED3\u675F_\u6B66\u4FA0\u7537" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B\u7ED3\u675F_\u5996\u517D\u7537_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B\u7ED3\u675F_\u5996\u517D\u7537" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B\u5FAA\u73AF_\u6807\u51C6\u7537_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B\u5FAA\u73AF_\u6B66\u4FA0\u7537" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4EB2\u543B\u5FAA\u73AF_\u5996\u517D\u7537_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4EB2\u543B\u5FAA\u73AF_\u5996\u517D\u7537" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u66B4_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u66B4_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u66B4_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u66B4_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u66B4_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u66B4_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6C99\u66B4_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u66B4_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u66B4_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u66B4_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u66B4_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u66B4_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u66B4_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6C99\u66B4_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u77F3\u5492_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u77F3\u5492_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u77F3\u5492_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u77F3\u5492_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u77F3\u5492_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u77F3\u5492_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6C99\u77F3\u5492_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u77F3\u5492_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u77F3\u5492_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u77F3\u5492_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u77F3\u5492_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u77F3\u5492_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C99\u77F3\u5492_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6C99\u77F3\u5492_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1425 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u9677_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u65BD\u653E\u843D" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u9677_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u9677_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u9677_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u65BD\u653E\u843D" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u9677_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C99\u9677_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E0A\u8F7D\u5177_\u8D77" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E0A\u8F7D\u5177" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E0A\u8F7D\u5177\u843D" + m_dwStartTime: 625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F38\u61D2\u8170_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F38\u61D2\u8170_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F38\u61D2\u8170_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F38\u61D2\u8170_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u706B\u6D77\u5200\u5C71_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u706B\u6D77\u5200\u5C71_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u706B\u6D77\u5200\u5C71_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u706B\u6D77\u5200\u5C71_\u541F\u5531" + m_dwStartTime: 2275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\xB7\u706B\u6D77\u5200\u5C71_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u706B\u6D77\u5200\u5C71_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u706B\u6D77\u5200\u5C71_\u541F\u5531" + m_dwStartTime: 2275 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\u706B\u7B26_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\u706B\u7B26_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\u706B\u7B26_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u70C8\u706B\u7B26_\u541F\u5531" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\u706B\u7B26_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\u706B\u7B26_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u795E\u706B\u7B26_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u70C8\u706B\u7B26_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u70C8\u706B\u7B26_\u541F\u5531" + m_dwStartTime: 750 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u751F\u6C14_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u751F\u6C14" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u80DC\u5229_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u80DC\u5229" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u77F3\u7834\u5929\u60CA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u77F3\u7834\u5929\u60CA_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u77F3\u7834\u5929\u60CA_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u77F3\u7834\u5929\u60CA_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u77F3\u7834\u5929\u60CA_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u77F3\u7834\u5929\u60CA_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_vip\u767E\u5408\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u767E\u5408\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_vip\u767E\u5408\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u767E\u5408\u53CC\u624B\u957F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u82AD\u8549\u6247\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u82AD\u8549\u6247\u53CC\u624B\u957F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5DF4\u638C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u5DF4\u638C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u68D2\u7403\u68CD_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u68D2\u7403\u68CD" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u68D2\u7403\u624B\u5957_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u68D2\u7403\u624B\u5957" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u97AD\u70AE_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u97AD\u70AE" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u51B0\u6DC7\u6DCB\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u51B0\u6DC7\u6DCB\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62E8\u6D6A\u9F13\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u62E8\u6D6A\u9F13\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u62E8\u6D6A\u9F13\u53CC\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u62E8\u6D6A\u9F13\u53CC\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u80E1\u841D\u535C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u65F6\u88C5\u6B66\u5668_\u5355\u624B\u77ED\u80E1\u841D\u535C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u82B12_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u82B12_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u82B1\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u4E94\u661F\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u5355\u624B\u77ED\u4E94\u661F\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u9999\u8549_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u65F6\u88C5\u6B66\u5668_\u5355\u624B\u77ED\u9999\u8549" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u77ED\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u5355\u624B\u77ED\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5355\u624B\u5251\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u5355\u624B\u5251\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u706F\u7B3C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u706F\u7B3C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7B1B\u5B50\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u7B1B\u5B50\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9489\u8019_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u9489\u8019" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7C89\u7EA2\u4F1E_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7C89\u7EA2\u4F1E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53E4\u4F1E\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53E4\u4F1E\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u6D77\u87BA\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u6D77\u87BA\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u77ED\u6756\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u77ED\u6756\u5355\u624B\u77ED_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u8377\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7EA2\u767D\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u7EA2\u767D\u5355\u624B\u77ED\u5251" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7EA2\u767D\u77ED\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u7EA2\u767D\u5355\u624B\u77ED\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7EA2\u767D\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u7EA2\u767D\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u80E1\u7434_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u80E1\u7434" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u82B1\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9F99\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u9F99\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u957F\u5175_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u957F\u5175" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u77ED\u5175_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u73AB\u7470\u77ED\u5175" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9B54\u955C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9B54\u955C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u72EE\u5B50\u624B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u72EE\u5B50\u624B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u706F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u706F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u7518\u8517_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u7518\u8517" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u82B12_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u82B12_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u83B2\u85D5\u4E4B\u9524_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u83B2\u85D5\u4E4B\u9524" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u94C1\u9539_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u94C1\u9539" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u4E94\u661F\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u4E94\u661F\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u957F\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u957F\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u5927\u8471_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u77ED\u5927\u8471" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u82B1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u82B1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u5C0F\u6728\u69CC_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u77ED\u5C0F\u6728\u69CC" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53CC\u624B\u77ED\u7F8A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u53CC\u624B\u77ED\u7F8A" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53F0\u82B1\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u53F0\u82B1\u5355\u624B\u77ED\u5251" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53F0\u82B1\u77ED\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u53F0\u82B1\u5355\u624B\u77ED\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u53F0\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u53F0\u82B1\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u53CC\u624B\u957F\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u679C\u53CC\u624B\u957F\u6756_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u846B\u82A6_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7CD6\u846B\u82A6" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5929\u9E45\u957F\u5175_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5929\u9E45\u957F\u5175" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5929\u9E45\u77ED\u5175_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5929\u9E45\u77ED\u5175" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u94DC\u9572_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u94DC\u9572" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u9999\u80A0\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u9999\u80A0\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5C0F\u9E21\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u5C0F\u9E21\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5C0F\u9E21\u77ED\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u5C0F\u9E21\u5355\u624B\u77ED\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u5C0F\u9E21\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u5C0F\u9E21\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u718A\u732B\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u718A\u732B\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u718A\u732B\u77ED\u6756_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u718A\u732B\u77ED\u6756" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u718A\u732B\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6CD5\u5E08\u5973_\u4F11\u95F2_\u718A\u732B\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u96EA\u82B1\u5355\u624B\u77ED_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u96EA\u82B1\u5355\u624B\u77ED" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u96EA\u82B1\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u96EA\u82B1\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u65F6\u88C5\u52A8\u4F5C_\u7389\u7C73\u53CC\u624B\u957F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u65F6\u88C5\u6B66\u5668_\u7389\u7C73\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u6C34\u4E2D_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u6C34\u4E2D_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u6C34\u4E2D_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4F7F\u7528\u9053\u5177_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6454\u5012_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6454\u5012" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6454\u5012\u5FAA\u73AF" + m_dwStartTime: 825 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u971C\u5203_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u971C\u5203_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u971C\u5203_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u971C\u5203_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u971C\u5203_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u971C\u5203_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C34\u4E0B\u6B7B\u4EA1_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C34\u4E0B\u6B7B\u4EA1_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C34\u4E0B\u6B7B\u4EA1\u6F02\u6D6E_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C34\u4E0B\u6B7B\u4EA1\u6F02\u6D6E_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6C34\u4E2D\u6F02\u6D6E_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6C34\u4E2D\u6F02\u6D6E_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u601D\u8003_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u601D\u8003" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DB\u5904\u5F20\u671B_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F20\u671B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u56DB\u5904\u5F20\u671B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F20\u671B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8038\u80A9\u8180_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8038\u80A9\u8180" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u9001\u4E1C\u897F_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u9001\u4E1C\u897F_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CF0\u5C71\u538B\u9876_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CF0\u5C71\u538B\u9876_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CF0\u5C71\u538B\u9876_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CF0\u5C71\u538B\u9876_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CF0\u5C71\u538B\u9876_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6CF0\u5C71\u538B\u9876_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u762B\u75EA_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u762B\u75EA_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u84C4\u6C14_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6311\u8845" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6311\u8845_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u84C4\u6C14_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u7FFB\u6EDA_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u7FFB_\u7A7A\u7FFB\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u7FFB\u6EDA_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u7FFB_\u7A7A\u7FFB\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u7A7A\u4E2D\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8DF3\u8DC3\u843D\u5730_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u88AB\u52A8" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u540C\u6027\u88AB\u52A8" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u88AB\u52A82" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u540C\u6027\u88AB\u52A82" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u4E3B\u52A8" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u540C\u6027\u4E3B\u52A8" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u540C\u6027\u8C03\u60C5_\u4E3B\u52A82" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u540C\u6027\u4E3B\u52A82" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E94\u884C\u4E4B\u62A4_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u65BD\u653E\u843D" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E94\u884C\u4E4B\u62A4_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E94\u884C\u4E4B\u62A4_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E94\u884C\u4E4B\u62A4_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u65BD\u653E\u843D" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E94\u884C\u4E4B\u62A4_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E94\u884C\u4E4B\u62A4_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u821E\u8E48_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6492\u8C46\u6210\u5175_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6492\u8C46\u6210\u5175_\u65BD\u653E\u8D77" + m_dwStartTime: 1950 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6492\u8C46\u6210\u5175_\u65BD\u653E\u843D" + m_dwStartTime: 3025 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4ED9\u5143\u7206\u53D1_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u771F\u5143\u7206\u53D1_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5411\u524D\u51B2\u950B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5411\u524D\u51B2\u950B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u884C\u8D70_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u884C\u8D70_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u53CC\u9A91_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u53CC\u9A91_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u884C\u8D70_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u884C\u8D70_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u884C\u8D70_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4F11\u95F2_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4F11\u95F2_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u84C4\u6C14_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u843D_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u65BD\u653E\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u84C4\u6C14_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u84C4\u6C14_\u541F\u5531_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u84C4\u6C14_\u541F\u5531\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u91CA\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u541F\u5531" + m_dwStartTime: 2350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u91CA\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7384\u51B0\u6C34\u9F99_\u541F\u5531" + m_dwStartTime: 2350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8840\u796D\u708E\u7206_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8840\u796D\u708E\u7206_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8840\u796D\u708E\u7206_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8840\u796D\u708E\u7206_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8840\u796D\u708E\u7206_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8840\u796D\u708E\u7206_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8840\u796D\u708E\u7206_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8840\u796D\u708E\u7206_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8840\u796D\u708E\u7206_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8840\u796D\u708E\u7206_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8840\u796D\u708E\u7206_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8840\u796D\u708E\u7206_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8840\u796D\u708E\u7206_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u8840\u796D\u708E\u7206_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u708E\u7D22_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u65BD\u653E\u843D" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u708E\u7D22_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u708E\u7D22_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u708E\u7D22_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u5FAA\u73AF" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u65BD\u653E\u843D" + m_dwStartTime: 225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u708E\u7D22_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u708E\u7D22_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u708E\u7D22_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u708E\u7D22_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6447\u5934_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6447\u5934" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E1A\u706B\u7B26_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E1A\u706B\u7B26_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E1A\u706B\u7B26_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E1A\u706B\u7B26_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E1A\u706B\u7B26_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E1A\u706B\u7B26_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E1A\u706B\u7B26_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E1A\u706B\u7B26_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E1A\u706B\u7B26_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E1A\u706B\u7B26_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u7130_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u4E1A\u706B\u7B26_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u4E1A\u706B\u7B26_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u4E1A\u706B\u7B26_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1675 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u79FB\u52A8_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u79FB\u52A8_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F02\u6027\u8C03\u60C5" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F02\u6027\u8C03\u60C5" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F02\u6027\u8C03\u60C52" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F02\u6027\u8C03\u60C52" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u62E5\u62B1_\u6807\u51C6\u7537_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62E5\u62B1_\u6807\u51C6\u7537_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u62E5\u62B1_\u5996\u517D\u7537_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62E5\u62B1_\u5996\u517D\u7537_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D8C\u6CC9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D8C\u6CC9_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D8C\u6CC9_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D8C\u6CC9_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D8C\u6CC9_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D8C\u6CC9_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D8C\u6CC9_\u541F\u5531" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D8C\u6CC9_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D8C\u6CC9_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D8C\u6CC9_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D8C\u6CC9_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6D8C\u6CC9_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6D8C\u6CC9_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6D8C\u6CC9_\u541F\u5531" + m_dwStartTime: 475 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6E38\u52A8_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6E38\u52A8_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5143\u7D20\u865A\u7A7A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5143\u7D20\u865A\u7A7A_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5143\u7D20\u865A\u7A7A_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5143\u7D20\u865A\u7A7A_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5143\u7D20\u865A\u7A7A_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5143\u7D20\u865A\u7A7A_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u843D\u77F3\u672F_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u843D\u77F3\u672F_\u541F\u5531" + m_dwStartTime: 1150 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6655\u5012\u53CA\u7AD9\u7ACB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6655\u5012\u53CA\u7AD9\u7ACB" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6218\u6597_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6218\u6597\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u7ED1\u5B9A_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u7ED1\u5B9A_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u7A7A\u62F3" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB\u7A7A\u62F3" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u9A91\u4E58_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u9A91\u4E58_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u53CC\u9A91_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u53CC\u9A91_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7AD9\u7ACB_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7AD9\u7ACB_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5F20\u671B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5F20\u671B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u62DB\u624B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u62DB\u624B" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u6B63\u5750_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u6253\u5750_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u6253\u5750\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 2625 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u81F4\u656C_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u81F4\u656C" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u708E\u9635_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u708E\u9635_\u65BD\u653E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u708E\u9635_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u708E\u9635_\u65BD\u653E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u708E\u9635_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u708E\u9635_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7099\u708E\u9635_\u65BD\u653E" + m_dwStartTime: 1225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u708E\u9635_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u708E\u9635_\u65BD\u653E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u708E\u9635_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u708E\u9635_\u65BD\u653E" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u708E\u9635_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u708E\u9635_\u9884\u5907" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7099\u708E\u9635_\u65BD\u653E" + m_dwStartTime: 1225 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u7130_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u7130_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u7130_\u7A7A\u4E2D\u98DE\u5251_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u7130_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u7130_\u7A7A\u4E2D\u98DE\u5251_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u7130_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7099\u7130_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u7130_\u65BD\u653E\u843D_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u7130_\u65BD\u653E\u843D" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u7130_\u65BD\u653E\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u7130_\u65BD\u653E\u8D77" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u7099\u7130_\u541F\u5531_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u7099\u7130_\u541F\u5531" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + - m_strName: "\u7099\u7130_\u541F\u5531\u5FAA\u73AF" + m_dwStartTime: 1350 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8F6C\u52A8\u5175\u5668_\u53CC\u624B\u957F" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8F6C\u52A8\u5175\u5668_\u53CC\u624B\u957F" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u8F6C\u52A8\u5175\u5668_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u8F6C\u52A8\u5175\u5668_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u4E0B_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5750\u4E0B_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u4E0B\u5FAA\u73AF_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5750\u4E0B\u5FAA\u73AF_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u4E0B\u7AD9\u8D77_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5750\u4E0B\u7AD9\u8D77_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: 1 + m_nMaxLoops: 1 + m_EventInfoLst: + - m_nType: 0 + m_dwStartTime: 0 + m_dwTimeSpan: 0 + m_bOnce: 0 + m_pAct: + m_strName: + m_nLoops: 0 + m_ActLst: [] + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 0 + m_bResetMaterialScale: 0 + m_bStopChildrenAct: 0 + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 + - m_strName: "\u5750\u6905\u5B50_\u901A\u7528" + m_nLoops: 1 + m_ActLst: + - m_strName: "\u5750\u6905\u5B50_\u901A\u7528" + m_dwStartTime: 0 + m_dwEndTime: 0 + m_dwSpan: 0 + m_nMinLoops: -1 + m_nMaxLoops: -1 + m_EventInfoLst: [] + m_dwComActMinSpan: 0 + m_bInfinite: 0 + m_Ranks: 00000000000000000000000000000000 + m_aEventCounter: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_nEventChannel: 0 + m_fPlaySpeed: 1000000 + m_bResetMaterialScale: 1 + m_bStopChildrenAct: 0 diff --git a/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女_CombinedActionSO.asset.meta b/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女_CombinedActionSO.asset.meta new file mode 100755 index 0000000000..60a58934a1 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女_CombinedActionSO.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ccf54ff0e6d1e8542a9183e8defc97e4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Scripts/A3DModelReader.meta b/Assets/ModelRenderer/Scripts/A3DModelReader.meta new file mode 100644 index 0000000000..1e95bfb781 --- /dev/null +++ b/Assets/ModelRenderer/Scripts/A3DModelReader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c22cdb94f04a6469ea286207b819e3d4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Scripts/A3DModelReader/Common.meta b/Assets/ModelRenderer/Scripts/A3DModelReader/Common.meta new file mode 100644 index 0000000000..d93903c103 --- /dev/null +++ b/Assets/ModelRenderer/Scripts/A3DModelReader/Common.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9e3b5e97e1e0c481dadb61d496065081 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Scripts/A3DModelReader/Common/A3DCombinedAction.cs b/Assets/ModelRenderer/Scripts/A3DModelReader/Common/A3DCombinedAction.cs new file mode 100755 index 0000000000..df2ba5d8ce --- /dev/null +++ b/Assets/ModelRenderer/Scripts/A3DModelReader/Common/A3DCombinedAction.cs @@ -0,0 +1,444 @@ +using System.Collections.Generic; +using System.IO; +//using ModelViewer.Scene.SceneObject; + +namespace ModelViewer.Common +{ + public static class A3DCombinedActionConst + { + public static int EVENT_TYPE_NONE = -1; + public static int EVENT_TYPE_BASE = 100; + public static int EVENT_TYPE_GFX = EVENT_TYPE_BASE + 0; + public static int EVENT_TYPE_SFX = EVENT_TYPE_BASE + 1; + public static int EVENT_TYPE_CHLDACT = EVENT_TYPE_BASE + 2; + public static int EVENT_TYPE_MATCHG = EVENT_TYPE_BASE + 3; + public static int EVENT_TYPE_ATT_PT = EVENT_TYPE_BASE + 4; + public static int EVENT_TYPE_SCRIPT = EVENT_TYPE_BASE + 5; + public static int EVENT_TYPE_CAM_PT = EVENT_TYPE_BASE + 6; + public static int EVENT_TYPE_MODELSCLCHG = EVENT_TYPE_BASE + 7; + public static int EVENT_TYPE_MATTRANS = EVENT_TYPE_BASE + 8; + public static int EVENT_TYPE_AUDIOEVENT = EVENT_TYPE_BASE + 9; + + // when add new type, change this definition + public static int EVENT_TYPE_END = EVENT_TYPE_AUDIOEVENT; + + public static string _format_cact_name = "CombineActName: "; + public static string _format_act_count = "BaseActCount: "; + public static string _format_act_name = "BaseActName: "; + public static string _format_act_start_time = "ActStartTime: "; + public static string _format_act_LoopCount = "LoopCount: "; + public static string _format_act_LoopMinNum = "LoopMinNum: "; + public static string _format_act_LoopMaxNum = "LoopMaxNum: "; + public static string _format_start_time = "StartTime: "; + public static string _format_time_span = "TimeSpan: "; + public static string _format_rank_count = "RankCount: "; + public static string _format_rank = "Channel: "; // "Channel: %d, Rank: %d" + public static string _format_event_channel = "EventChannel: "; + public static string _format_play_speed = "PlaySpeed: "; + public static string _format_stopchildact = "StopChildAct: "; + public static string _format_resetmtlonstop = "ResetMtl: "; + public static string _format_once = "Once: "; + public static string _format_fx_count = "FxCount: "; + public static string _format_fx_type = "FxType: "; + public static string _format_fx_start_time = "FxStartTime: "; + public static string _format_fx_path_num = "FxFileNum: "; + public static string _format_fx_path = "FxFilePath: "; + public static string _format_hook_name = "HookName: "; + public static string _format_hook_offset = "HookOffset: "; + public static string _format_hook_yaw = "HookYaw: "; + public static string _format_hook_pitch = "HookPitch: "; + public static string _format_hook_rot = "HookRot: "; + public static string _format_bind_parent = "BindParent: "; + public static string _format_fadeout = "FadeOut: "; + public static string _format_model_alpha = "UseModelAlpha: "; + public static string _format_custom_path = "CustomPath: "; + public static string _format_atk_path = "AtkPath: "; + public static string _format_divisions = "Divisions: "; + public static string _format_atk_usedelay = "AtkUseDelay: "; + public static string _format_atk_delaycount = "AtkDelayNum: "; + public static string _format_atk_delaytime = "AtkDelayTime: "; + public static string _format_atk_orientation = "AtkOrient: "; + public static string _format_custom_data = "CustomData: "; + public static string _format_gfx_scale = "GfxScale: "; + public static string _format_gfx_alpha = "GfxAlpha: "; + public static string _format_gfx_play_speed = "GfxSpeed: "; + public static string _format_gfx_outer_path = "GfxOuterPath: "; + public static string _format_gfx_rel_ecm = "GfxRelToECM: "; + public static string _format_gfx_param_count = "GfxParamCount: "; + public static string _format_gfx_delay_time = "GfxDelayTime: "; + public static string _format_gfx_rot_with_model = "GfxRotWithModel: "; + public static string _format_param_ele_name = "ParamEleName: "; + public static string _format_param_id = "ParamId: "; + public static string _format_param_type = "ParamDataType: "; + public static string _format_param_is_cmd = "ParamDataIsCmd: "; + public static string _format_param_cmd = "ParamDataCmd: "; + public static string _format_param_pos = "ParamDataPos: "; + public static string _format_param_hook = "ParamDataHook: "; + public static string _format_child_act_count = "ChildActCount: "; + public static string _format_child_act_name = "ChildActName: "; + public static string _format_chld_hhname = "HHName: "; + public static string _format_transtime = "TransTime: "; + public static string _format_chld_istrail = "IsTrail: "; + public static string _format_chld_span = "TrailSpan: "; + public static string _format_chld_segs = "Segs: "; + public static string _format_pos = "Pos: "; + public static string _format_dir = "Dir: "; + public static string _format_matchg = "ColorValue: "; + public static string _format_apply_child = "ApplyChild: "; + public static string _format_mst_orgcol = "OrgColor: "; + public static string _format_mst_destnum = "DestNum: "; + public static string _format_mst_destcol = "Col: "; + public static string _format_mst_desttime = "Time: "; + public static string _format_event_type = "EventType: "; + public static string _format_event_count = "EventCount: "; + public static string _format_script_lines = "ScriptLines: "; + public static string _format_script_cfg_state = "ScriptCfgState: "; + public static string _format_script_usage = "ScriptUsage: "; + public static string _format_cam_dist2host = "Dist2Host: "; + public static string _format_cam_yaw2host = "Yaw2Host: "; + public static string _format_cam_pitch = "Pitch: "; + public static string _format_cam_yawacc = "YawAcc: "; + public static string _format_cam_pitchacc = "PitchAcc: "; + public static string _format_cam_angleacc = "AngleAcc: "; + public static string _format_cam_linearacc = "LinearAcc: "; + public static string _format_cam_isinterp = "IsInterp: "; + public static string _format_cam_beziernum = "BezierNum: "; + public static string _format_cam_beziervert = ""; + public static string _format_audioevent = "AudioEvent: "; + public static string _format_audiomindist = "MinDist: "; + public static string _format_audiomaxdist = "MaxDist: "; + public static string _format_audiousecustom = "Custom: "; + public static string _format_audiovolume = "Volume: "; + + public static int _trail_delta = 3; + } + + [System.Serializable] + public class ACTION_INFO + { + public string m_strName; + public uint m_dwStartTime; + public uint m_dwEndTime; + public uint m_dwSpan; + public int m_nMinLoops; + public int m_nMaxLoops; + + public bool Load(FileStream fileStream, StreamReader file, uint dwVersion) + { + bool isBinary = fileStream != null; + + if (isBinary) + { + } + else + { + string szLine = string.Empty; + string tagValue; + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_act_name, out tagValue); + m_strName = tagValue; + + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_act_start_time, out tagValue); + uint.TryParse(tagValue, out m_dwStartTime); + + if (dwVersion < 6) + { + szLine = file.ReadLine(); + } + else if (dwVersion >= 9 && dwVersion < 36) + { + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_act_LoopCount, out tagValue); + int nLoops; + int.TryParse(tagValue, out nLoops); + m_nMinLoops = m_nMaxLoops = nLoops; + } + else if (dwVersion >= 36) + { + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_act_LoopMinNum, out tagValue); + int.TryParse(tagValue, out m_nMinLoops); + + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_act_LoopMaxNum, out tagValue); + int.TryParse(tagValue, out m_nMaxLoops); + } + } + + return true; + } + } + + [System.Serializable] + public class EVENT_INFO + { + public int m_nType; + public uint m_dwStartTime; + public uint m_dwTimeSpan; + public bool m_bOnce; + public A3DCombinedAction m_pAct; + + public static EVENT_INFO LoadFromFile(A3DCombinedAction pAct, AFile pFile, StreamReader pTextFile, uint dwVersion) + { + string szLine = string.Empty; + string tagValue; + long dwReadLen; + int nType = A3DCombinedActionConst.EVENT_TYPE_NONE; + + if (pFile != null) + { + // pFile->Read(&nType, sizeof(nType), &dwReadLen); + } + else + { + // pFile->ReadLine(szLine, AFILE_LINEMAXLEN, &dwReadLen); + // sscanf(szLine, _format_event_type, &nType); + tagValue = pTextFile.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_event_type,out tagValue); + nType = int.TryParse(tagValue, out nType) ? nType : A3DCombinedActionConst.EVENT_TYPE_NONE; + } + + EVENT_INFO pEvent = new(); + // if (!pEvent) return NULL; + // + // if (dwVersion >= 18 && !pEvent->LoadEventBase(pFile, dwVersion) + // || !pEvent->Load(pFile, dwVersion)) + // { + // delete pEvent; + // return NULL; + // } + + return pEvent; + } + } + + [System.Serializable] + public class FX_BASE_INFO : EVENT_INFO + { + //public RandStringContainer[] m_pFiles; + public string m_strHookName; + //public A3DVECTOR3 m_vOffset; + public float m_fYaw; + public float m_fPitch; + public float m_fRot; + public bool m_bBindParent; + public bool m_bModelAlpha; + public bool m_bCustomFilePath; + public bool m_bUseECMHook; + public A3DMATRIX4 m_matTran; + public uint m_dwFadeOutTime; + public int m_nCustomData; + + public static FX_BASE_INFO LoadFromFile(A3DCombinedAction pAct, FileStream fileStream, StreamReader file, uint dwVersion) + { + bool isBinary = fileStream != null; + if (isBinary) + { + } + else + { + string szLine = string.Empty; + string tagValue; + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_fx_type, out tagValue); + int nType = int.TryParse(tagValue, out nType) ? nType : 0; + } + + // TODO: There are 3 types: GFX_INFO, SFX_INFO, AUDIOEVENT_INFO + return new FX_BASE_INFO(); + } + } + + [System.Serializable] + public class A3DCombinedAction + { + + public string m_strName; + public int m_nLoops; + + public bool IsLooping() + { + if (m_ActLst.Count == 0) + return false; + return m_ActLst[0].m_nMinLoops == -1 || m_ActLst[0].m_nMaxLoops == -1; + } + public List m_ActLst = new(); + public List m_EventInfoLst = new(); + + // Original, this property describes the comact's span time, now the span time may change randomly, + // so this property only define the min span time + // And rename it from m_dwComActSpan -> m_dwComActMinSpan + public uint m_dwComActMinSpan; + public bool m_bInfinite; + //public byte[] m_Ranks = new byte[CECModelConst.ACTCHA_MAX]; + public int[] m_aEventCounter = new int[A3DCombinedActionConst.EVENT_TYPE_END - A3DCombinedActionConst.EVENT_TYPE_BASE + 1]; + public int m_nEventChannel; + public float m_fPlaySpeed; + public bool m_bResetMaterialScale; // Whether to reset color change state when action stops (default is true) + public bool m_bStopChildrenAct; // Whether to stop child model actions when action stops (default is false) + + public bool Load(FileStream fileStream, StreamReader file, uint dwVersion) + { + int nActCount = 0; + int nFxCount = 0; + int nChildCount = 0; + int nEventCount = 0; + bool isBinary = fileStream != null; + + if (isBinary) + { + + } + else + { + string szLine = string.Empty; + string tagValue; + szLine = file.ReadLine(); + while(!szLine.Contains(A3DCombinedActionConst._format_cact_name)) + { + szLine = file.ReadLine(); + } + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_cact_name, out tagValue); + m_strName = tagValue; + + if (dwVersion >= 3) + { + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_act_LoopCount, out tagValue); + int.TryParse(tagValue, out m_nLoops); + } + else + m_nLoops = 1; + + if (dwVersion >= 30) + { + int rank_count = 0; + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_rank_count, out tagValue); + int.TryParse(tagValue, out rank_count); + + for (int i = 0; i < rank_count; i++) + { + int channel = 0; + int rank = 0; + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_rank, out tagValue); + //Output look like this: 2, Rank: 1 + string[] values = tagValue.Split(','); + if (values.Length >= 2) + { + int.TryParse(values[0].Trim(), out channel); + int.TryParse(values[1].Substring(values[1].LastIndexOf(' ') + 1).Trim(), out rank); + } + + // if (channel >= 0 && channel < CECModelConst.ACTCHA_MAX) + // { + // m_Ranks[channel] = (byte)rank; + // } + } + } + + if (dwVersion >= 32) + { + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_event_channel, out tagValue); + int.TryParse(tagValue, out m_nEventChannel); + } + + if (dwVersion >= 40) + { + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_play_speed, out tagValue); + float.TryParse(tagValue, out m_fPlaySpeed); + } + + if (dwVersion >= 49) + { + int iRead = 0; + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_stopchildact, out tagValue); + int.TryParse(tagValue, out iRead); + m_bStopChildrenAct = (iRead != 0); + + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_resetmtlonstop, out tagValue); + int.TryParse(tagValue, out iRead); + m_bResetMaterialScale = (iRead != 0); + } + + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_act_count, out tagValue); + int.TryParse(tagValue, out nActCount); + + + for (int i = 0; i < nActCount; i++) + { + ACTION_INFO pInfo = new ACTION_INFO(); + pInfo.Load(fileStream, file, dwVersion); + m_ActLst.Add(pInfo); + } + + if (m_nLoops == -1 && nActCount == 1 && m_ActLst.Count > 0) + m_ActLst[0].m_nMinLoops = m_ActLst[0].m_nMaxLoops = -1; + + if (dwVersion < 7) + { + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_fx_count, out tagValue); + int.TryParse(tagValue, out nFxCount); + + for (int i = 0; i < nFxCount; i++) + { + FX_BASE_INFO pInfo = FX_BASE_INFO.LoadFromFile(this, fileStream, file, dwVersion); + if (pInfo == null) continue; + //TODO: Implement Load function + // pInfo.Load(fileStream, file, dwVersion); + m_EventInfoLst.Add(pInfo); + } + } + else + { + // pFile->ReadLine(szLine, AFILE_LINEMAXLEN, &dwReadLen); + // sscanf(szLine, _format_event_count, &nEventCount); + szLine = file.ReadLine(); + AAssit.GetStringAfter(szLine, A3DCombinedActionConst._format_event_count, out tagValue); + int.TryParse(tagValue, out nEventCount); + + EVENT_INFO pEvent = null; + for (int i = 0; i < nEventCount; i++) + { + pEvent = EVENT_INFO.LoadFromFile(this, null, file, dwVersion); + if (pEvent == null) continue; + m_EventInfoLst.Add(pEvent); + + if (pEvent.m_nType > A3DCombinedActionConst.EVENT_TYPE_END) + continue; + + // TODO: Maybe we need to implement this in the future + // m_aEventCounter[pEvent.m_nType - A3DCombinedActionConst.EVENT_TYPE_BASE]++; + } + } + } + + /*/ TODO: Maybe we need to implement this in the future + ALISTPOSITION pos = m_EventInfoLst.GetHeadPosition(); + while (pos) m_EventInfoLst.GetNext(pos)->Init(pDev); + + pos = m_ActLst.GetHeadPosition(); + while (pos) + { + if (m_ActLst.GetNext(pos)->IsInfinite()//*GetLoops() == -1) + { + m_bInfinite = true; + break; + } + } + //*/ + + + + return true; + } + } +} \ No newline at end of file diff --git a/Assets/ModelRenderer/Scripts/A3DModelReader/Common/A3DCombinedAction.cs.meta b/Assets/ModelRenderer/Scripts/A3DModelReader/Common/A3DCombinedAction.cs.meta new file mode 100755 index 0000000000..81f2396a75 --- /dev/null +++ b/Assets/ModelRenderer/Scripts/A3DModelReader/Common/A3DCombinedAction.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 474b8a12d05e4c40bc8c0dbb6a01996c +timeCreated: 1741498229 \ No newline at end of file diff --git a/Assets/ModelRenderer/Scripts/BrewMonster.meta b/Assets/ModelRenderer/Scripts/BrewMonster.meta new file mode 100644 index 0000000000..94e982438c --- /dev/null +++ b/Assets/ModelRenderer/Scripts/BrewMonster.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3eaf31844b1f7448c99ee2c03d26d192 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Scripts/BrewMonster/ECModel.meta b/Assets/ModelRenderer/Scripts/BrewMonster/ECModel.meta new file mode 100644 index 0000000000..30e73559e0 --- /dev/null +++ b/Assets/ModelRenderer/Scripts/BrewMonster/ECModel.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5197d06d8f33a41b9bf8428bb0e7c245 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombineActHolder.cs b/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombineActHolder.cs new file mode 100644 index 0000000000..d5b42b99ba --- /dev/null +++ b/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombineActHolder.cs @@ -0,0 +1,12 @@ +using BrewMonster.Scripts.ECModel; +using UnityEngine; + +namespace BrewMonster.Scripts.ECModel +{ + public class CombineActHolder : MonoBehaviour + { + [SerializeField] + private CombinedActionSO combinedActionSO; + public CombinedActionSO ActionSO => combinedActionSO; + } +} diff --git a/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombineActHolder.cs.meta b/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombineActHolder.cs.meta new file mode 100644 index 0000000000..f5050bebc9 --- /dev/null +++ b/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombineActHolder.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 472c24b873524423f95454131fd11da6 \ No newline at end of file diff --git a/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombinedActionSO.cs b/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombinedActionSO.cs new file mode 100755 index 0000000000..e002c8b427 --- /dev/null +++ b/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombinedActionSO.cs @@ -0,0 +1,19 @@ +using System.Collections.Generic; +using ModelViewer.Common; +using UnityEngine; + + +namespace BrewMonster.Scripts.ECModel +{ + [CreateAssetMenu(fileName = "CombinedActionSO", menuName = "BrewMonster/CombinedActionSO")] + public class CombinedActionSO : ScriptableObject + { + public List CombinedActionData = new(); + public A3DCombinedAction GetActionByName(string name) + { + A3DCombinedAction returnValue = null; + returnValue = CombinedActionData.Find(x => x.m_strName == name); + return returnValue; + } + } +} \ No newline at end of file diff --git a/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombinedActionSO.cs.meta b/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombinedActionSO.cs.meta new file mode 100755 index 0000000000..75ef01b7c6 --- /dev/null +++ b/Assets/ModelRenderer/Scripts/BrewMonster/ECModel/CombinedActionSO.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: efae13296c7c04fc59ae2d974329383b \ No newline at end of file diff --git a/Assets/PerfectWorld/Scripts/Move/CECPlayer.cs b/Assets/PerfectWorld/Scripts/Move/CECPlayer.cs index 3382c3ef21..f7628fb257 100644 --- a/Assets/PerfectWorld/Scripts/Move/CECPlayer.cs +++ b/Assets/PerfectWorld/Scripts/Move/CECPlayer.cs @@ -20,6 +20,7 @@ using ModelRenderer.Scripts.Common; using Unity.VisualScripting; using DG.Tweening.Plugins; using PerfectWorld.Scripts.Managers; +using BrewMonster.Scripts.ECModel; namespace BrewMonster { @@ -328,6 +329,11 @@ namespace BrewMonster // Initialize CECModel for hook system // 初始化CECModel以支持挂点系统 await InitializePlayerCECModel(profession,gender); + if (m_pPlayerCECModel == null || m_pPlayerModel == null) + { + throw new InvalidOperationException( + $"SetPlayerModel failed to initialize model. profession={profession}, gender={gender}"); + } // Cleanup old model if exists // 清理旧模型(如果存在) @@ -653,11 +659,36 @@ namespace BrewMonster { m_pPlayerCECModel = new CECModel(); } - + m_pPlayerCECModel.SetId(m_PlayerInfo.cid); + + if (NPCManager.Instance == null) + { + BMLogger.LogError("[CECPlayer] NPCManager.Instance is null while loading player model."); + return; + } + m_pPlayerCECModel.m_pPlayerModel = await NPCManager.Instance.GetModelPlayer(profession, gender); + if (m_pPlayerCECModel.m_pPlayerModel == null) + { + BMLogger.LogError($"[CECPlayer] GetModelPlayer returned null. profession={profession}, gender={gender}"); + return; + } // Find SkeletonBuilder component on model GameObject // 在模型GameObject上查找SkeletonBuilder组件 SkeletonBuilder skeletonBuilder = m_pPlayerModel.GetComponentInChildren(); + CombineActHolder combineActHolder = m_pPlayerModel.GetComponentInChildren(); + CombinedActionSO combinedAction = null; + if (combineActHolder != null) + { + try + { + combinedAction = combineActHolder.ActionSO; + } + catch (Exception ex) + { + BMLogger.LogWarning($"[CECPlayer] Failed to read CombineActHolder.ActionSO on '{m_pPlayerModel.name}': {ex.Message}"); + } + } if (skeletonBuilder == null) { // SkeletonBuilder might not be built yet, try to find it after a frame @@ -670,7 +701,10 @@ namespace BrewMonster // 在CECModel上设置引用 m_pPlayerCECModel.SetSkeletonBuilder(skeletonBuilder); m_pPlayerCECModel.SetTransform(m_pPlayerModel.transform); - + if(combinedAction != null) + { + m_pPlayerCECModel.SetCombinedAction(combinedAction); + } // Initialize skeleton builder (ensures hooks are available) // 初始化骨架构建器(确保挂点可用) m_pPlayerCECModel.InitializeSkeletonBuilder(); @@ -899,6 +933,10 @@ namespace BrewMonster public void SetPlayerInfor(INFO playinfo) { m_PlayerInfo = playinfo; + if (m_pPlayerCECModel != null) + { + m_pPlayerCECModel.SetId(m_PlayerInfo.cid); + } } public INFO GetPlayInfo() @@ -1156,8 +1194,6 @@ namespace BrewMonster PLAYER_ACTION action = actionConfig; int weapon_type = GetShowingWeaponType(); string szAct = ""; - string szShapeName = ""; - GetShapeName(ref szShapeName); if(m_pActionController != null) { if (iAction != (int)PLAYER_ACTION_TYPE.ACT_WOUNDED) @@ -1400,9 +1436,9 @@ namespace BrewMonster // // ���ݲ��Ŷ�����������������λ�� // UpdateWeaponHangerPosByAction(iAction); - // } - - EventBus.PublishChannel(m_PlayerInfo.cid, new PlayActionEvent(szShapeName, szAct, iTransTime)); + // } + // EventBus.PublishChannel(m_PlayerInfo.cid, new PlayActionEvent(szShapeName, szAct, iTransTime)); + m_pActionController.PlayNonSkillActionWithName(iAction, szAct, bRestart, iTransTime); return true; } else @@ -1555,7 +1591,8 @@ namespace BrewMonster protected void ClearComActFlagAllRankNodes(bool v) { - EventBus.PublishChannel(m_PlayerInfo.cid, new ClearComActFlagAllRankNodesEvent(v)); + //EventBus.PublishChannel(m_PlayerInfo.cid, new ClearComActFlagAllRankNodesEvent(v)); + m_pActionController.ClearComActFlagAllRankNodes(v); } public bool PlayAttackAction(int nAttackSpeed, ref int attackTime, CECAttackEvent attackEvent) { @@ -1572,6 +1609,7 @@ namespace BrewMonster Debug.Log($"[THN]: PlayAttackAction weapon_type: {weapon_type}"); int nTime1 = 0, nTime2 = 0; int iAction = (int)PLAYER_ACTION_TYPE.ACT_ATTACK_1 + nRand; + bool bHideFX = false;//!CECOptimize::Instance().GetGFX().CanShowAttack(GetCharacterID(), GetClassID()); PLAYER_ACTION action = m_PlayerActions[iAction]; if (string.IsNullOrEmpty(action.data.ActionPrefix)) @@ -1590,10 +1628,12 @@ namespace BrewMonster Debug.Log($"[THN]: PlayAttackAction action with weapon type: {weapon_type} and weapon attached: {m_bWeaponAttached}"); szAct = EC_Utility.BuildActionName(action, weapon_type, "起"); int iTransTime = 200; - EventBus.PublishChannel(m_PlayerInfo.cid, new PlayActionEvent(szShapeName, szAct, iTransTime, true)); + //EventBus.PublishChannel(m_PlayerInfo.cid, new PlayActionEvent(szShapeName, szAct, iTransTime, true)); + m_pActionController.PlayNonSkillActionWithName(iAction, szAct, true, iTransTime, bHideFX, attackEvent,COMACT_FLAG_MODE_ONCE_MULTIIGNOREGFX); szAct = EC_Utility.BuildActionName(action, weapon_type, "落"); queueActionEvent.SetData(szShapeName, szAct, SetApplyDamage, true, attackEvent, iTransTime,false); - EventBus.PublishChannelClass(m_PlayerInfo.cid, queueActionEvent); + //EventBus.PublishChannelClass(m_PlayerInfo.cid, queueActionEvent); + m_pActionController.QueueNonSkillActionWithName(iAction, szAct, 0, false, bHideFX); //PlayNonSkillActionWithName(iAction, szAct, true, 200, true, ref pActFlag, COMACT_FLAG_MODE_ONCE_MULTIIGNOREGFX);gagága /* if (pRightHandWeapon != null && IsUsingMagicWeapon()) @@ -1631,8 +1671,8 @@ namespace BrewMonster } szAct = EC_Utility.BuildActionName(action, weapon_type, "起", szActionMiddleName); - EventBus.PublishChannel(m_PlayerInfo.cid, new PlayActionEvent(szShapeName, szAct, 200, true)); - + //EventBus.PublishChannel(m_PlayerInfo.cid, new PlayActionEvent(szShapeName, szAct, 200, true)); + m_pActionController.PlayNonSkillActionWithName(iAction, szAct, true, 200); // if (pRightHandWeapon != null && IsUsingMagicWeapon()) // pRightHandWeapon.PlayActionByName(_GenWeaponActionName(szAct, m_iGender), 1.0f, true, 200, true, iAction, bHideFX); @@ -1640,7 +1680,8 @@ namespace BrewMonster szAct = EC_Utility.BuildActionName(action, weapon_type, "落", szActionMiddleName); queueActionEvent.SetData(szShapeName, szAct, SetApplyDamage, false, attackEvent, 0, false); - EventBus.PublishChannelClass(m_PlayerInfo.cid, queueActionEvent); + //EventBus.PublishChannelClass(m_PlayerInfo.cid, queueActionEvent); + m_pActionController.QueueNonSkillActionWithName(iAction, szAct, 0, false, false, true, false); // if (pRightHandWeapon != null && IsUsingMagicWeapon()) // pRightHandWeapon.QueueAction(_GenWeaponActionName(szAct, m_iGender), 0, iAction, false, false, bHideFX); @@ -1655,7 +1696,8 @@ namespace BrewMonster szAct = EC_Utility.BuildActionName(stand_action, 0); int iTranstime = 300; queueActionEvent.SetData(szShapeName, szAct, SetApplyDamage, false, attackEvent, iTranstime, false); - EventBus.PublishChannelClass(m_PlayerInfo.cid, queueActionEvent); + //EventBus.PublishChannelClass(m_PlayerInfo.cid, queueActionEvent); + m_pActionController.QueueNonSkillActionWithName(iAction, szAct, iTranstime, false, false, true, false); /* QueueNonSkillActionWithName(ACT_FIGHTSTAND, szAct, 300, false, bHideFX, true); if (pRightHandWeapon != null && IsUsingMagicWeapon()) @@ -2474,13 +2516,13 @@ namespace BrewMonster public bool PlaySkillAttackActionWithName(int idSkill, string szActName, bool bNoFX = false, CECAttackEvent attackEvent = null) { return m_pActionController != null - && m_pActionController.PlaySkillAttackActionWithName(idSkill, szActName, bNoFX, attackEvent != null ? new bool[] { attackEvent.m_bSignaled } : null, 0); + && m_pActionController.PlaySkillAttackActionWithName(idSkill, szActName, bNoFX, attackEvent, 0); } - public bool QueueSkillAttackActionWithName(int idSkill, string szActName, int nTransTime = 200, bool bNoFX = false, bool bResetSpeed = false, bool bResetActFlag = false, bool[] pNewActFlag = null, uint dwNewFlagMode = 0) + public bool QueueSkillAttackActionWithName(int idSkill, string szActName, int nTransTime = 200, bool bNoFX = false, bool bResetSpeed = false, bool bResetActFlag = false, CECAttackEvent attackEvent = null, uint dwNewFlagMode = 0) { return m_pActionController != null - && m_pActionController.QueueSkillAttackActionWithName(idSkill, szActName, nTransTime, bNoFX, bResetSpeed, bResetActFlag, pNewActFlag, dwNewFlagMode); + && m_pActionController.QueueSkillAttackActionWithName(idSkill, szActName, nTransTime, bNoFX, bResetSpeed, bResetActFlag, attackEvent, dwNewFlagMode); } private void GetSkillSectionActionName(ref string szAct, int idSkill, int nSection) @@ -3307,7 +3349,7 @@ namespace BrewMonster } catch (Exception ex) { - BMLogger.LogError($"CECPlayer::LoadPlayerSkeleton, SetPlayerModel failed: {ex.Message}"); + BMLogger.LogError($"CECPlayer::LoadPlayerSkeleton, SetPlayerModel failed: {ex}"); return false; } @@ -3814,17 +3856,20 @@ namespace BrewMonster public string AnimationName; public int ITransTime; public bool IsForceStopPrevious; - public PlayActionEvent(string shapeName, string animationName, int iTransTime, bool isForceStopPrevious = false) + public CECAttackEvent AttackEvent; + public PlayActionEvent(string shapeName, string animationName, int iTransTime, bool isForceStopPrevious = false, CECAttackEvent attackEvent = null) { this.AnimationName = shapeName + animationName; ITransTime = iTransTime; IsForceStopPrevious = isForceStopPrevious; + AttackEvent = attackEvent; } - public PlayActionEvent(string animationName, int iTransTime, bool isForceStopPrevious = false) + public PlayActionEvent(string animationName, int iTransTime, bool isForceStopPrevious = false, CECAttackEvent attackEvent = null) { this.AnimationName = animationName; ITransTime = iTransTime; IsForceStopPrevious = isForceStopPrevious; + AttackEvent = attackEvent; } } public struct PLAYER_ACTION diff --git a/Assets/PerfectWorld/Scripts/NPC/CECModel.cs b/Assets/PerfectWorld/Scripts/NPC/CECModel.cs index 79b992ee74..f06b02e381 100644 --- a/Assets/PerfectWorld/Scripts/NPC/CECModel.cs +++ b/Assets/PerfectWorld/Scripts/NPC/CECModel.cs @@ -4,13 +4,14 @@ using System.Runtime.InteropServices; using BrewMonster.Scripts; using CSNetwork.GPDataType; using UnityEngine; +using ModelViewer.Common; using CombinedActMap = System.Collections.Generic.Dictionary; using CoGfxMap = System.Collections.Generic.Dictionary; using ConvexHullDataArray = System.Collections.Generic.List; using ECModelHookMap = System.Collections.Generic.Dictionary; using BrewMonster; - +using BrewMonster.Scripts.ECModel; public enum ECMScript { enumECMScriptStartAction = 0, @@ -110,7 +111,7 @@ public class CECModelStaticData private string m_strSkinModelPath = string.Empty; private bool m_bAutoUpdate = true; private bool m_bActMapped; - private readonly CombinedActMap m_ActionMap = new CombinedActMap(); + public CombinedActionSO m_ActionMap; private uint m_dwVersion; private string m_strHook = string.Empty; private string m_strCCName = string.Empty; @@ -163,9 +164,10 @@ public class CECModelStaticData m_CHAABB.Clear(); } - public bool LoadData(string szModelFile, bool bLoadAdditionalSkin) + public bool LoadData(CombinedActionSO combinedAction) { - throw new NotImplementedException("CECModelStaticData.LoadData requires the legacy AFile system to be ported."); + m_ActionMap = combinedAction; + return true; } public bool Save(string szFile, CECModel pModel) @@ -183,7 +185,7 @@ public class CECModelStaticData m_BoneScales.Clear(); m_BoneScaleExArr.Clear(); m_CoGfxMap.Clear(); - m_ActionMap.Clear(); + m_ActionMap = null; m_AdditionalSkinLst.Clear(); m_ChildInfoArray.Clear(); m_ConvexHullDataArr.Clear(); @@ -220,7 +222,7 @@ public class CECModelStaticData public CoGfxMap GetCoGfxMap() => m_CoGfxMap; - public CombinedActMap GetCombinedActMap() => m_ActionMap; + public CombinedActionSO GetCombinedAction() => m_ActionMap; public string GetPhysFileName() => m_strPhysFileName; @@ -368,7 +370,7 @@ public class CECModel private int m_nId = 0; public GameObject m_pPlayerModel; private const uint COMACT_FLAG_MODE_NONE = 0; - protected CECModelStaticData m_pMapModel; + protected CECModelStaticData m_pMapModel = new CECModelStaticData(); public SkeletonBuilder m_skeletonBuilder; private Dictionary m_hookCache = new Dictionary(); private Dictionary m_hangerPositionCache = new Dictionary(); @@ -391,31 +393,7 @@ public class CECModel pNode->m_pActFlag = NULL; }*/ } - public bool QueueAction(CECNPC.INFO iNFO, string szActName, ref bool pNewActFlag, int nTransTime = 200, uint dwUserData = 0, bool bForceStopPrevAct = false, bool bCheckTailDup = false, bool bNoFx = false, bool bResetSpeed = false - /*joslian*/, bool bResetActFlag = false, uint dwNewFlagMode = COMACT_FLAG_MODE_NONE) - { - QueueAction(iNFO, 0, szActName, ref bResetActFlag, nTransTime, dwUserData, bForceStopPrevAct, bCheckTailDup, bNoFx, bResetSpeed/*joslian*/, pNewActFlag, dwNewFlagMode); - return true; - } - public bool QueueAction(CECNPC.INFO iNFO, int nChannel, string szActName, ref bool pNewActFlag, int nTransTime, uint dwUserData/* 0 */, bool bForceStopPrevAct, bool bCheckTailDup, bool bNoFx, bool bResetSpeed - /*joslian*/, bool bResetActFlag, uint dwNewFlagMode) - { - - EventBus.PublishChannel(iNFO.nid, new QueueNPCActionEvent(szActName)); - return true; - } - public void StopChannelAction(int nChannel, bool bStopAct, bool bStopFx = false) - { - //TODO: Implement StopChannelAction - } - public struct QueueNPCActionEvent - { - public string AnimationName; - public QueueNPCActionEvent(string animationName) - { - AnimationName = animationName; - } - } + public bool HasCHAABB() { return m_pMapModel.HasCHAABB(); } /// @@ -428,7 +406,12 @@ public class CECModel m_skeletonBuilder = builder; m_hookCache?.Clear(); // Invalidate cache on model change } - + public void SetCombinedAction(CombinedActionSO combinedAction) + { + //workaround: load data from combined action. C++ load from CMS file aka prefab. we already include those data inside the prefab + //dunno if we lack of any imformation + m_pMapModel.LoadData(combinedAction); + } /// /// Get the SkeletonBuilder component /// 获取SkeletonBuilder组件 @@ -660,6 +643,98 @@ public class CECModel child.transform.position += worldAlign; } } + //ref cant not be null so seperate into two functions + public bool PlayActionByName(string szActName, float fWeight=1.0f, bool bRestart=true, int nTransTime=200, bool bForceStop=true, uint dwUserData =0, bool bNoFx=false, CECAttackEvent attackEvent = null, uint dwFlagMode = 0) + { + return PlayActionByName(0, szActName, fWeight, bRestart, nTransTime, bForceStop, dwUserData, bNoFx, attackEvent, dwFlagMode); + } + //ref cant not be null so seperate into two functions + public bool QueueAction(string szActName, int nTransTime=200, uint dwUserData=0, bool bForceStopPrevAct=false, bool bCheckTailDup = false, bool bNoFx = false, bool bResetSpeed = false, bool bResetActFlag=false, CECAttackEvent attackEvent=null, uint dwNewFlagMode=0) + { + return QueueAction(0, szActName, nTransTime, dwUserData, bForceStopPrevAct, bCheckTailDup, bNoFx, bResetSpeed ,bResetActFlag, attackEvent, dwNewFlagMode); + } + //Final trigger function + public bool PlayActionByName(int nChannel, string szActName, float fWeight, bool bRestart, int nTransTime, bool bForceStop, uint dwUserData, bool bNoFx, CECAttackEvent attackEvent, uint dwFlagMode = 0) + { + if(szActName == null || szActName == string.Empty) + { + return false; + } + A3DCombinedAction combinedAction = GetComActByName(szActName); + if(combinedAction == null) + { + return false; + } + var actionInfos = combinedAction.m_ActLst; + var isLoop = combinedAction.m_nLoops == 1; + EventBus.PublishChannel(m_nId, new PlayActionEvent(actionInfos[0].m_strName, nTransTime, bForceStop, attackEvent)); + for(int i = 1; i < actionInfos.Count; i++) + { + EventBus.PublishChannelClass(m_nId, new QueueActionEvent(actionInfos[i].m_strName, null, false, attackEvent, nTransTime, false)); + } + + return true; + } + public A3DCombinedAction GetComActByName(string szActName) + { + if(m_pMapModel == null||m_pMapModel.m_ActionMap == null) + { + return null; + } + CombinedActionSO ActionMap = m_pMapModel.m_ActionMap; + return ActionMap.GetActionByName(szActName); + } + //Final trigger function + public bool QueueAction(int nChannel, string szActName, int nTransTime, uint dwUserData, bool bForceStopPrevAct, bool bCheckTailDup, bool bNoFx, bool bResetSpeed, bool bResetActFlag, CECAttackEvent attackEvent=null, uint dwNewFlagMode=0){ + if(szActName == null || szActName == string.Empty) + { + return false; + } + A3DCombinedAction combinedAction = GetComActByName(szActName); + if(combinedAction == null) + { + return false; + } + var actionInfos = combinedAction.m_ActLst; + var isLoop = combinedAction.m_nLoops == 1; + EventBus.PublishChannelClass(m_nId, new QueueActionEvent(actionInfos[0].m_strName, null, false, attackEvent, nTransTime, bForceStopPrevAct)); + for(int i = 1; i < actionInfos.Count; i++) + { + EventBus.PublishChannelClass(m_nId, new QueueActionEvent(actionInfos[i].m_strName, null, false, attackEvent, nTransTime, false)); + } + return true; + } + public bool ClearComActFlagAllRankNodes(bool bSignalCurrent){ + EventBus.PublishChannel(m_nId, new ClearComActFlagAllRankNodesEvent(bSignalCurrent)); + return false; + } + public uint GetCurActionUserData(){ + return 0; + } + public bool QueueAction(CECNPC.INFO iNFO, string szActName, ref bool pNewActFlag, int nTransTime = 200, uint dwUserData = 0, bool bForceStopPrevAct = false, bool bCheckTailDup = false, bool bNoFx = false, bool bResetSpeed = false + /*joslian*/, bool bResetActFlag = false, uint dwNewFlagMode = COMACT_FLAG_MODE_NONE) + { + QueueAction(iNFO, 0, szActName, ref bResetActFlag, nTransTime, dwUserData, bForceStopPrevAct, bCheckTailDup, bNoFx, bResetSpeed/*joslian*/, pNewActFlag, dwNewFlagMode); + return true; + } + public bool QueueAction(CECNPC.INFO iNFO, int nChannel, string szActName, ref bool pNewActFlag, int nTransTime, uint dwUserData/* 0 */, bool bForceStopPrevAct, bool bCheckTailDup, bool bNoFx, bool bResetSpeed + /*joslian*/, bool bResetActFlag, uint dwNewFlagMode) + { + EventBus.PublishChannel(iNFO.nid, new QueueNPCActionEvent(szActName)); + return true; + } + public void StopChannelAction(int nChannel, bool bStopAct, bool bStopFx = false) + { + //TODO: Implement StopChannelAction + } + public struct QueueNPCActionEvent + { + public string AnimationName; + public QueueNPCActionEvent(string animationName) + { + AnimationName = animationName; + } + } public void PlayGfx(string szPath, string szHook, float fScale, bool bFadeOut, A3DVECTOR3 vOffset, float fPitch, float fYaw, float fRot, bool bUseECMHook, uint dwFadeOutTime) { if (!bFadeOut) diff --git a/Assets/PerfectWorld/Scripts/Players/CECPlayerActionController.cs b/Assets/PerfectWorld/Scripts/Players/CECPlayerActionController.cs index 30cf35e21c..439e9558f5 100644 --- a/Assets/PerfectWorld/Scripts/Players/CECPlayerActionController.cs +++ b/Assets/PerfectWorld/Scripts/Players/CECPlayerActionController.cs @@ -75,7 +75,7 @@ namespace BrewMonster { // 当前C#只提供默认策略(不拆分上下半身) // Use default policy in this C# port - m_actionPlayPolicy = new CECPlayerActionPlayPolicy(m_pPlayer, m_pPlayerModel); + m_actionPlayPolicy = new CECPlayerActionPlayDefaultPolicy(m_pPlayer, m_pPlayerModel); } private void ReleaseActionPlayPolicy() @@ -90,16 +90,16 @@ namespace BrewMonster return false; } - public bool PlayNonSkillActionWithName(int iAction, string szActName, bool bRestart = true, int nTransTime = 200, bool bNoFx = false, bool[] pActFlag = null, uint dwFlagMode = 0) + public bool PlayNonSkillActionWithName(int iAction, string szActName, bool bRestart = true, int nTransTime = 200, bool bNoFx = false, CECAttackEvent attackEvent = null, uint dwFlagMode = 0) { return m_actionPlayPolicy != null - && m_actionPlayPolicy.PlayNonSkillActionWithName(iAction, szActName, bRestart, nTransTime, bNoFx, pActFlag, dwFlagMode); + && m_actionPlayPolicy.PlayNonSkillActionWithName(iAction, szActName, bRestart, nTransTime, bNoFx, attackEvent, dwFlagMode); } - public bool QueueNonSkillActionWithName(int iAction, string szActName, int nTransTime = 200, bool bForceStopPrevAct = false, bool bNoFx = false, bool bResetSpeed = false, bool bResetActFlag = false, bool[] pNewActFlag = null, uint dwNewFlagMode = 0) + public bool QueueNonSkillActionWithName(int iAction, string szActName, int nTransTime = 200, bool bForceStopPrevAct = false, bool bNoFx = false, bool bResetSpeed = false, bool bResetActFlag = false, CECAttackEvent attackEvent = null, uint dwNewFlagMode = 0) { return m_actionPlayPolicy != null - && m_actionPlayPolicy.QueueNonSkillActionWithName(iAction, szActName, nTransTime, bForceStopPrevAct, bNoFx, bResetSpeed, bResetActFlag, pNewActFlag, dwNewFlagMode); + && m_actionPlayPolicy.QueueNonSkillActionWithName(iAction, szActName, nTransTime, bForceStopPrevAct, bNoFx, bResetSpeed, bResetActFlag, attackEvent, dwNewFlagMode); } public bool PlaySkillCastActionWithName(int idSkill, string szActName, bool bNoFX = false) @@ -112,22 +112,24 @@ namespace BrewMonster } return false; } - - public bool PlaySkillAttackActionWithName(int idSkill, string szActName, bool bNoFX = false, bool[] pActFlag = null, uint dwFlagMode = 0) + + public bool PlaySkillAttackActionWithName(int idSkill, string szActName, bool bNoFX = false, CECAttackEvent attackEvent = null, uint dwFlagMode = 0) { + bool? pActFlag = null; if (m_actionPlayPolicy != null - && m_actionPlayPolicy.PlaySkillAttackActionWithName(idSkill, szActName, bNoFX, pActFlag, dwFlagMode)) + && m_actionPlayPolicy.PlaySkillAttackActionWithName(idSkill, szActName, bNoFX, attackEvent, dwFlagMode)) { m_bSkillAttackActionPlayed = true; return true; } return false; } - - public bool QueueSkillAttackActionWithName(int idSkill, string szActName, int nTransTime = 200, bool bNoFX = false, bool bResetSpeed = false, bool bResetActFlag = false, bool[] pNewActFlag = null, uint dwNewFlagMode = 0) + + public bool QueueSkillAttackActionWithName(int idSkill, string szActName, int nTransTime = 200, bool bNoFX = false, bool bResetSpeed = false, bool bResetActFlag = false, CECAttackEvent attackEvent = null, uint dwNewFlagMode = 0) { + bool? pNewActFlag = null; return m_actionPlayPolicy != null - && m_actionPlayPolicy.QueueSkillAttackActionWithName(idSkill, szActName, nTransTime, bNoFX, bResetSpeed, bResetActFlag, pNewActFlag, dwNewFlagMode); + && m_actionPlayPolicy.QueueSkillAttackActionWithName(idSkill, szActName, nTransTime, bNoFX, bResetSpeed, bResetActFlag, attackEvent, dwNewFlagMode); } public bool PlayWoundActionWithName(string szActName) diff --git a/Assets/PerfectWorld/Scripts/Players/CECPlayerActionPlayPolicy.cs b/Assets/PerfectWorld/Scripts/Players/CECPlayerActionPlayPolicy.cs index 1fc18dd68c..29c8903b49 100644 --- a/Assets/PerfectWorld/Scripts/Players/CECPlayerActionPlayPolicy.cs +++ b/Assets/PerfectWorld/Scripts/Players/CECPlayerActionPlayPolicy.cs @@ -239,7 +239,7 @@ namespace BrewMonster } // Non-skill action - public virtual bool PlayNonSkillActionWithName(int iAction, string szActName, bool bRestart, int nTransTime, bool bNoFx, bool[] pActFlag, uint dwFlagMode) + public virtual bool PlayNonSkillActionWithName(int iAction, string szActName, bool bRestart, int nTransTime, bool bNoFx, CECAttackEvent attackEvent, uint dwFlagMode) { if (m_pPlayer == null || string.IsNullOrEmpty(szActName)) { @@ -250,11 +250,11 @@ namespace BrewMonster return true; } - public virtual bool QueueNonSkillActionWithName(int iAction, string szActName, int nTransTime, bool bForceStopPrevAct, bool bNoFx, bool bResetSpeed, bool bResetActFlag, bool[] pNewActFlag, uint dwNewFlagMode) + public virtual bool QueueNonSkillActionWithName(int iAction, string szActName, int nTransTime, bool bForceStopPrevAct, bool bNoFx, bool bResetSpeed, bool bResetActFlag, CECAttackEvent attackEvent = null, uint dwNewFlagMode = 0) { // 当前实现:直接播放(队列行为由上层系统处理) // Current: just play, queue behavior handled by upper systems - return PlayNonSkillActionWithName(iAction, szActName, false, nTransTime, bNoFx, pNewActFlag, dwNewFlagMode); + return PlayNonSkillActionWithName(iAction, szActName, false, nTransTime, bNoFx, attackEvent, dwNewFlagMode); } // Skill actions @@ -274,7 +274,7 @@ namespace BrewMonster return true; } - public virtual bool PlaySkillAttackActionWithName(int idSkill, string szActName, bool bNoFX, bool[] pActFlag, uint dwFlagMode) + public virtual bool PlaySkillAttackActionWithName(int idSkill, string szActName, bool bNoFX, CECAttackEvent attackEvent, uint dwFlagMode) { if (m_pPlayer == null || string.IsNullOrEmpty(szActName)) { @@ -290,9 +290,9 @@ namespace BrewMonster return true; } - public virtual bool QueueSkillAttackActionWithName(int idSkill, string szActName, int nTransTime, bool bNoFX, bool bResetSpeed, bool bResetActFlag, bool[] pNewActFlag, uint dwNewFlagMode) + public virtual bool QueueSkillAttackActionWithName(int idSkill, string szActName, int nTransTime, bool bNoFX, bool bResetSpeed, bool bResetActFlag, CECAttackEvent attackEvent, uint dwNewFlagMode) { - return PlaySkillAttackActionWithName(idSkill, szActName, bNoFX, pNewActFlag, dwNewFlagMode); + return PlaySkillAttackActionWithName(idSkill, szActName, bNoFX, attackEvent, dwNewFlagMode); } public virtual bool PlayWoundActionWithName(string szActName) @@ -345,4 +345,120 @@ namespace BrewMonster return -1; } } + + + class CECPlayerActionPlayDefaultPolicy : CECPlayerActionPlayPolicy{ + public CECPlayerActionPlayDefaultPolicy(CECPlayer pPlayer, CECModel pPlayerModel): base(pPlayer, pPlayerModel){} + + public override bool PlayNonSkillActionWithName(int iAction, string szActName, bool bRestart, int nTransTime, bool bNoFx, CECAttackEvent attackEvent, uint dwFlagMode) + { + ClearComActFlagAllRankNodes(true); + bool check = GetModel()!=null + && GetModel().PlayActionByName(szActName, 1.0f, bRestart, nTransTime, true, (uint)iAction , bNoFx, attackEvent, dwFlagMode); + if (!check) + { + BMLogger.LogError($"Fall back to base implementation: {szActName} failed"); + //fallback to base implementation(which is non policy based) + base.PlayNonSkillActionWithName(iAction, szActName, bRestart, nTransTime, bNoFx, attackEvent, dwFlagMode); + } + return check; + } + public override bool QueueNonSkillActionWithName(int iAction, string szActName, int nTransTime, bool bForceStopPrevAct, bool bNoFx, bool bResetSpeed, bool bResetActFlag, CECAttackEvent attackEvent = null, uint dwNewFlagMode = 0) + { + bool check = GetModel()!=null + && GetModel().QueueAction(szActName, nTransTime, (uint)iAction, bForceStopPrevAct, false, bNoFx, bResetSpeed, bResetActFlag, attackEvent, dwNewFlagMode); + if (!check) + { + BMLogger.LogError($"Fall back to base implementation: {szActName} failed"); + //fallback to base implementation(which is non policy based) + base.QueueNonSkillActionWithName(iAction, szActName, nTransTime, bForceStopPrevAct, bNoFx, bResetSpeed, bResetActFlag, attackEvent, dwNewFlagMode); + } + return check; + } + public override bool PlaySkillCastActionWithName(int idSkill, string szActName, bool bNoFX){ + if (IsMoving()){ + return false; + } + ClearComActFlagAllRankNodes(true); + bool check = GetModel()!=null + && GetModel().PlayActionByName(szActName, 1.0f, true, 200, true); + if (!check) + { + BMLogger.LogError($"Fall back to base implementation: {szActName} failed"); + //fallback to base implementation(which is non policy based) + base.PlaySkillCastActionWithName(idSkill, szActName, bNoFX); + } + return check; + } + public override bool PlaySkillAttackActionWithName(int idSkill, string szActName, bool bNoFX, CECAttackEvent attackEvent, uint dwFlagMode){ + if (IsMoving()){ + return false; + } + //LOG_DEBUG_INFO(AString().Format("PlaySkillAttackActionWithName:%s", szActName)); + ClearComActFlagAllRankNodes(true); + bool check = GetModel() != null + && GetModel().PlayActionByName(szActName, 1.0f, true, 200, true, (uint)PLAYER_ACTION_TYPE.ACT_CASTSKILL, bNoFX, attackEvent, dwFlagMode); + if (!check) + { + BMLogger.LogError($"Fall back to base implementation: {szActName} failed"); + //fallback to base implementation(which is non policy based) + base.PlaySkillAttackActionWithName(idSkill, szActName, bNoFX, attackEvent, dwFlagMode); + } + return check; + } + + public override bool QueueSkillAttackActionWithName(int idSkill, string szActName, int nTransTime, bool bNoFX, bool bResetSpeed, bool bResetActFlag, CECAttackEvent attackEvent, uint dwNewFlagMode){ + //LOG_DEBUG_INFO(AString().Format("QueueSkillAttackActionWithName:%s", szActName)); + bool check = GetModel()!=null + && GetModel().QueueAction(szActName, nTransTime, (int)PLAYER_ACTION_TYPE.ACT_CASTSKILL, false, false, bNoFX, bResetSpeed, bResetActFlag, attackEvent, dwNewFlagMode); + if (!check) + { + BMLogger.LogError($"Fall back to base implementation: {szActName} failed"); + //fallback to base implementation(which is non policy based) + base.QueueSkillAttackActionWithName(idSkill, szActName, nTransTime, bNoFX, bResetSpeed, bResetActFlag, attackEvent, dwNewFlagMode); + } + return check; + } + public override bool PlayWoundActionWithName(string szActName){ + //A3DSkinModel not implemented in C# + return false; + // //LOG_DEBUG_INFO(AString().Format("PlayWoundActionWithName:%s", szActName)); + // return GetModel() + // && GetModel()->GetA3DSkinModel()->PlayActionByName(szActName, CECModel::ACTCHA_WOUND, 1, 0, false); + } + public override void ClearComActFlagAllRankNodes(bool bSignalCurrent){ + if (GetModel()!=null){ + GetModel().ClearComActFlagAllRankNodes(bSignalCurrent); + } + } + public override void StopChannelAction(){ + if (GetModel()!=null){ + ClearComActFlagAllRankNodes(true); + GetModel().StopChannelAction(0, true); + } + } + public override void StopSkillAction(){ + if (GetModel()!=null && IsPlayingCastingSkillAction()){ + StopChannelAction(); + } + } + public override bool IsPlayingAction(int iAction){ + if (GetModel()!=null){ + return (int)GetModel().GetCurActionUserData() == iAction; + } + return false; + } + public override bool IsPlayingMoveAction(){ + if (GetModel()!=null){ + return IsMoveAction((int)GetModel().GetCurActionUserData()); + } + return false; + } + public override int GetLowerBodyAction(){ + if (GetModel()!=null){ + return (int)GetModel().GetCurActionUserData(); + } + return -1; + } + } } \ No newline at end of file diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs2/skill150.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs2/skill150.cs index 0bc53e4d6f..1ba1d105a0 100644 --- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs2/skill150.cs +++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs2/skill150.cs @@ -86,9 +86,9 @@ namespace BrewMonster public Skill150Stub() : base(150) { cls = 4; - name = "˺ҧ"; - nativename = "˺ҧ"; - icon = "˺ҧ"; + name = "撕咬"; + nativename = "撕咬"; + icon = "撕咬"; max_level = 10; type = 1; apcost = 20; @@ -109,11 +109,40 @@ namespace BrewMonster long_range = 0; restrict_corpse = 0; allow_forms = 2; - effect = "˺ҧ"; + effect = "撕咬"; doenchant = 1; dobless = 0; commoncooldown = 0; commoncooldowntime = 0; + m_szFlyGfxPath = string.Empty; + m_szHitGrndGfxPath = string.Empty; + m_szHitGfxPath = "策划联入/人物技能/击中/撕咬击中.gfx"; + + // GFX Movement and Behavior Parameters / GFX移动和行为参数 + m_MoveMode = (GfxMoveMode)0; + m_TargetMode = (GfxTargetMode)0; + m_AttFlyMode = (GfxAttackMode)0; + m_AttHitMode = (GfxAttackMode)0; + m_dwFlyTime = 0; + m_bTraceTarget = false; + m_FlyClusterCount = 1; + m_FlyClusterInterval = 0; + m_HitClusterCount = 1; + m_HitClusterInterval = 0; + m_bOneHit = true; + m_bFadeOut = false; + m_bRelScl = true; + m_fDefTarScl = 1.5f; + + // Area parameters (commented out) / 区域参数(已注释) + // m_bArea = false; + // m_Shape = (EmitShape)0; + // m_vSize = new Vector3(0.0f, 0.0f, 0.0f); + + // Param (commented out) / 参数(已注释) + // m_paramType = (GfxSkillValType)1; + // m_param = new GFX_SKILL_PARAM(); + // m_param.nVal = 0; restrict_weapons.Add(9); restrict_weapons.Add(0); range = new Range(); @@ -144,10 +173,7 @@ namespace BrewMonster #if SKILL_CLIENT public override int GetIntroduction(Skill skill, StringBuilder buffer, string format) { - buffer.Append(GPDataTypeHelper.FormatSkillIntroduction(format, - skill.GetLevel(), - 3.2f + 4 * skill.GetLevel(), - 5 * skill.GetLevel() * skill.GetLevel() + 119.1f * skill.GetLevel() + 209.1f)); + buffer.Append(GPDataTypeHelper.ReplacePercentD(format)); return buffer.Length; } #endif diff --git a/Assets/Scripts/CECHostPlayer.cs b/Assets/Scripts/CECHostPlayer.cs index 379fa530d5..fbfd707ded 100644 --- a/Assets/Scripts/CECHostPlayer.cs +++ b/Assets/Scripts/CECHostPlayer.cs @@ -366,7 +366,7 @@ namespace BrewMonster if (!await LoadPlayerSkeleton(true)) { - BMLogger.LogError("HoangDev CECHostPlayer::LoadResources, Failed to load skeleton"); + BMLogger.LogError($"HoangDev CECHostPlayer::LoadResources, Failed to load skeleton. {m_strName}"); return false; } diff --git a/Assets/Scripts/PlayerVisual.cs b/Assets/Scripts/PlayerVisual.cs index e6123b63a1..404dca58f5 100644 --- a/Assets/Scripts/PlayerVisual.cs +++ b/Assets/Scripts/PlayerVisual.cs @@ -11,6 +11,7 @@ namespace BrewMonster { public string AnimationName; public bool IsForceStopPrevious; + public CECAttackEvent AttackEvent; } public class PlayerVisual : MonoBehaviour { @@ -35,11 +36,17 @@ namespace BrewMonster //when this trigger, clear all the animation in the queue which in the same layer of animancer if (_animationQueue.Count > 0) { - _animationQueue.Enqueue(new AnimationQueue { AnimationName = @event.AnimationName, IsForceStopPrevious = @event.IsForceStopPrevious }); + _animationQueue.Enqueue(new AnimationQueue + { + AnimationName = @event.AnimationName, + IsForceStopPrevious = @event.IsForceStopPrevious, + AttackEvent = @event.AttackEvent + }); _animationList = _animationQueue.Select(q => q.AnimationName).ToList(); return; } InternalPlayAnimation(@event.AnimationName, @event.ITransTime); + ApplyAttackSignalOnAnimationEnd(@event.AttackEvent); } public void InitPlayerEventDoneHandler() { @@ -126,7 +133,12 @@ namespace BrewMonster public bool EnqueueAnimation(QueueActionEvent @event) { if (namedAnimancer == null) return false; - _animationQueue.Enqueue(new AnimationQueue { AnimationName = @event.AnimationName, IsForceStopPrevious = @event.IsForceStopPrevious }); + _animationQueue.Enqueue(new AnimationQueue + { + AnimationName = @event.AnimationName, + IsForceStopPrevious = @event.IsForceStopPrevious, + AttackEvent = null + }); _animationList = _animationQueue.Select(q => q.AnimationName).ToList(); if (!isHit) @@ -163,6 +175,19 @@ namespace BrewMonster var animationQueue = _animationQueue.Dequeue(); _animationList = _animationQueue.Select(q => q.AnimationName).ToList(); InternalPlayAnimation(animationQueue.AnimationName); + ApplyAttackSignalOnAnimationEnd(animationQueue.AttackEvent); + } + private void ApplyAttackSignalOnAnimationEnd(CECAttackEvent attackEvent) + { + if (attackEvent == null || _currentState == null) + { + return; + } + + _currentState.Events.OnEnd = () => + { + attackEvent.m_bSignaled = true; + }; } void ApplyDamage() { @@ -189,97 +214,17 @@ namespace BrewMonster /// private void InternalPlayAnimation(string animationName, float duration = FadeTime, FadeMode fadeMode = FadeMode) { - //Debug.Log($"InternalPlayAnimation: animationName FUllNAME={animationName}"); - string fullName = animationName; - string removeShapeName = animationName; - string removeFlyName = animationName; - if(animationName.Contains("_")) - { - int underscoreIndex = animationName.IndexOf('_'); - - removeShapeName = animationName.Substring(underscoreIndex + 1); - } - bool isState = namedAnimancer.States.TryGet(removeShapeName, out var existingState) ? true : false; + + bool isState = namedAnimancer.States.TryGet(animationName, out var existingState) ? true : false; if (isState) { - _currentState = namedAnimancer.TryPlay(removeShapeName, duration / 1000, fadeMode); - _currentAnimationName = removeShapeName; + _currentState = namedAnimancer.TryPlay(animationName, duration / 1000, fadeMode); + _currentAnimationName = animationName; //Debug.Log($"InternalPlayAnimation: removeShapeName 1 TriggerName={removeShapeName}"); return; } - bool isState2 = namedAnimancer.States.TryGet(fullName, out var existingState2) ? true : false; - if (isState2) - { - _currentState = namedAnimancer.TryPlay(fullName, duration / 1000, fadeMode); - _currentAnimationName = fullName; - return; - } - string fullName2 = fullName; - //if contain 空拳 change it to 通用 apply to full name and removeShapeName - if (fullName2.Contains("空拳")) - { - fullName2 = fullName2.Replace("空拳", "通用"); - removeShapeName = removeShapeName.Replace("空拳", "通用"); - } - bool isState3 = namedAnimancer.States.TryGet(removeShapeName, out var existingState3) ? true : false; - if (isState3) - { - _currentState = namedAnimancer.TryPlay(removeShapeName, duration / 1000, fadeMode); - _currentAnimationName = removeShapeName; - return; - } - bool isState4 = namedAnimancer.States.TryGet(fullName2, out var existingState4) ? true : false; - if (isState4) - { - _currentState = namedAnimancer.TryPlay(fullName2, duration / 1000, fadeMode); - _currentAnimationName = fullName2; - return; - } - int index = removeShapeName.IndexOf("空中"); - if (index >= 0 && removeShapeName.Length >= index + 4) - { - removeFlyName = removeShapeName.Remove(index + 2, 2); - } - else - { - removeFlyName = removeShapeName; - } - bool isState5 = namedAnimancer.States.TryGet(removeFlyName, out var existingState5) ? true : false; - if (isState5) - { - _currentState = namedAnimancer.TryPlay(removeFlyName, duration / 1000, fadeMode); - _currentAnimationName = removeFlyName; - return; - } - if (fullName2.Contains("_通用")) - { - fullName2 = fullName2.Replace("_通用", ""); - removeShapeName = removeShapeName.Replace("_通用", ""); - removeFlyName = removeFlyName.Replace("_通用", ""); - } - bool isState6 = namedAnimancer.States.TryGet(fullName2, out var existingState6) ? true : false; - if (isState6) - { - _currentState = namedAnimancer.TryPlay(fullName2, duration / 1000, fadeMode); - _currentAnimationName = fullName2; - return; - } - - bool isState8 = namedAnimancer.States.TryGet(removeShapeName, out var existingState8) ? true : false; - if (isState8) - { - _currentState = namedAnimancer.TryPlay(removeShapeName, duration / 1000, fadeMode); - _currentAnimationName = removeShapeName; - return; - } - bool isState7 = namedAnimancer.States.TryGet(removeFlyName, out var existingState7) ? true : false; - if (isState7) - { - _currentState = namedAnimancer.TryPlay(removeFlyName, duration / 1000, fadeMode); - _currentAnimationName = removeFlyName; - return; - } - BMLogger.LogError($"Null name animation: {fullName}"); + + BMLogger.LogError($"Null name animation: {animationName}"); } /// From 15331b4e90dfbd9b7db650327d0ffe0136f69ce5 Mon Sep 17 00:00:00 2001 From: Chomper9981 Date: Thu, 16 Apr 2026 15:37:07 +0700 Subject: [PATCH 7/8] fix ui after merge --- .../Art/Models/models/players/形象/法师女/躯干/法师女.prefab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab b/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab index 71594ace15..feb56d9906 100644 --- a/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab +++ b/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab @@ -5954,7 +5954,7 @@ MonoBehaviour: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 5133661830825835001} - m_Enabled: 1 + m_Enabled: 0 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 472c24b873524423f95454131fd11da6, type: 3} m_Name: From c2c546fee0162d328ee6a4301018f56e1191de44 Mon Sep 17 00:00:00 2001 From: Chomper9981 Date: Thu, 16 Apr 2026 15:40:43 +0700 Subject: [PATCH 8/8] fix mage model --- .../models/players/形象/法师女/躯干/法师女.prefab | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab b/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab index feb56d9906..008a909eaa 100644 --- a/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab +++ b/Assets/ModelRenderer/Art/Models/models/players/形象/法师女/躯干/法师女.prefab @@ -4879,7 +4879,6 @@ GameObject: - component: {fileID: 6264607540402582859} - component: {fileID: 2789629435814780223} - component: {fileID: 4504844427513838873} - - component: {fileID: 5130781569853185460} m_Layer: 0 m_Name: "\u6CD5\u5E08\u5973" m_TagString: Untagged @@ -5947,19 +5946,6 @@ MonoBehaviour: - {fileID: 7400000, guid: 3e474cefdc0b2e648aec98c966f26991, type: 2} - {fileID: 7400000, guid: 37c12771675cd69499260a8cadf95621, type: 2} - {fileID: 7400000, guid: f343209405aa0f7469aeb6429b1fc5a5, type: 2} ---- !u!114 &5130781569853185460 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5133661830825835001} - m_Enabled: 0 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 472c24b873524423f95454131fd11da6, type: 3} - m_Name: - m_EditorClassIdentifier: - combinedActionSO: {fileID: 11400000, guid: ccf54ff0e6d1e8542a9183e8defc97e4, type: 2} --- !u!1 &5156671091954275778 GameObject: m_ObjectHideFlags: 0