Compare commits

...

32 Commits

Author SHA1 Message Date
d441518dfe 指定动画等 2026-06-11 16:32:32 +08:00
cc046c53b3 fix(combat): HitBox 命中节奏统一 + 投射物穿透可配
HitBox 新增 HitMode Single/Interval:Interval 用 Enter/Exit 跟踪占用 + Update 轮询,对停留目标按间隔重判,不再依赖 OnTriggerEnter 单次语义。BodyContactDamage 改用 Interval 模式,修复停留在接触判定内、无敌结束后不再受伤的 bug;FlyingEnemy 接触伤害加按目标间隔节流。ProjectileConfigSO 新增 MaxHits 默认 1 即命中即消失,Projectile 按命中预算回收,修掉默认无限穿透;弹反守卫避免反射后立即回收。

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-11 16:31:55 +08:00
0491e3f919 fix(combat): 统一受击无敌闸门并修复 DoT 失效
将无敌判定收口到 PlayerController.TakeDamage(DamageInfo) 单一闸门并认 DamageFlags.IgnoreIFrame,PlayerStats 拆出原始扣血 ApplyDamage;新增 DamageFlags.IsDoT,持续伤害只扣血不打断硬直、不授予无敌。修复 DoT 绕过 HurtBox 时被 flag-blind 的整数 TakeDamage 静默吞没、且 FinalDamage 未结算(恒为0)的双重失效;敌人侧 DoT 标记 IsDoT 避免每 Tick 重置硬直。

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-11 16:30:56 +08:00
523f7c842a 修改editorsetting 2026-06-11 15:31:29 +08:00
4189a6210b perf(editor): 关闭 Domain/Scene Reload 加速进入 Play,并补齐域重载安全
关闭 Domain Reload 后 SO 的 OnEnable/OnDisable 不再于进入/退出 Play 触发、
静态字段不再重置,运行时态会跨 Play 会话残留。补齐重置路径:

- 新增 PlayModeResetHook:编辑器内在"进入 Play 前"统一回调各 SO 的重置,
  复刻 Domain Reload 曾提供的干净起点;运行时构建为空实现、零开销。
- 静态态用 RuntimeInitializeOnLoadMethod 重置:
  ServiceLocator._services / SettingsManager.SettingsChanged /
  EventChainManager.OnChainExecutedInEditor。
- SO 运行时态经 PlayModeResetHook 重置:
  BaseEventChannelSO(粘性值+订阅委托) / VoidBaseEventChannelSO /
  WorldStateRegistry(状态字典+变更事件) / InputReaderSO。
- InputReaderSO 增加解绑追踪:跨会话重建前先解绑旧输入回调,
  避免 InputActionAsset 存活导致同一输入重复绑定、多次触发。

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-11 14:40:37 +08:00
253a8811fa 删除godot mcp 2026-06-11 13:28:33 +08:00
9e7b513e60 删除旧生成的截图 2026-06-11 13:28:04 +08:00
a1f54b68e6 Refactor interaction prompt system to use world space prompts
- Removed the InteractPromptWidget from HUD and its references in HUDController.
- Introduced IInteractPromptView interface for world space interaction prompts.
- Implemented WorldInteractPrompt class to manage display of interaction prompts in world space.
- Updated InteractableDetector to handle showing/hiding of world space prompts based on player proximity to interactable objects.
- Created a new prefab for UI_WorldInteractPrompt to facilitate the new interaction prompt system.
2026-06-10 14:14:08 +08:00
32566020c7 feat(input): 添加 IInputIconService 接口及 InputDeviceType 枚举以支持按键图标管理 2026-06-10 14:13:34 +08:00
956a1dc5ab Refactor code structure for improved readability and maintainability 2026-06-10 10:19:27 +08:00
ebf0c97320 refactor(enemy): 敌人专属子类改为零代码配置型行为组件 2026-06-09 15:56:44 +08:00
7781ac4755 docs: CLAUDE.md 补充禁止引用其他游戏与及时 git 提交规范 2026-06-09 11:00:42 +08:00
e09bee31ec UI 系统 2026-06-09 10:41:43 +08:00
247de307c6 UI 系统 2026-06-08 16:05:00 +08:00
b582317692 UI 系统 2026-06-08 11:26:17 +08:00
1897658a00 UI系统 2026-06-07 11:49:55 +08:00
ff0f3bde54 refactor(ui): SkillTreePanel 改名为 FormSkillPanel
该面板实为只读的形态技能一览(按形态翻页展示技能图标/名称/描述/消耗/冷却),
不含节点/前置/技能点/解锁交互。原名 SkillTree 易误解为可交互技能树,故改名为
FormSkillPanel 以反映真实职责。.meta GUID 保留,无 prefab/场景引用。

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-07 11:40:28 +08:00
9aaa2b6452 docs: 修正进度系统文档中虚构的技能树系统
将 10_Manual_ProgressionSystem.md 中不存在的 SkillTreeSO/技能点/技能树解锁
流程,改写为真实实现:技能(FormSkillSO)随形态由 FormController 注入 SkillManager,
施放消耗魂力/灵力;能力通过 AbilityType 位掩码解锁(PlayerStats/AbilityFlags)。
同步更正 MT-PROG-06 的 HasAbility/存档字段引用,并统一 05/07/11 文档措辞为
'形态技能一览(FormSkillPanel)',明确本项目无技能树。

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-07 11:39:57 +08:00
d794b83ebe UI系统组件 2026-06-06 09:00:11 +08:00
fe4fd60083 地图系统 2026-06-05 18:41:33 +08:00
613f2a4d13 feat: Enhance scene transition management and HUD scaffolding
- Added RequestTransition method to ISceneService for direct scene transition requests without needing Inspector SO references.
- Updated DoorTransition and RoomTransition to utilize the new RequestTransition method via ServiceLocator.
- Introduced SceneFadeController to manage scene fade effects during transitions, with event channel integration for fade requests.
- Created HUDScaffoldWizard to automate HUD Canvas setup, including various UI elements and event channel bindings.
- Updated assembly definitions to include necessary dependencies for new UI components.
- Added Streaming assets for budget configuration to optimize scene loading and memory management.
2026-06-03 08:08:27 +08:00
d27ae9407d feat: Enhance Physics Perception System with new detection modes and performance optimizations
- Updated PhysicsPerceptionSystem to support seven detection modes: RangeCircle, BatchLOS, FanCast, BoxCast, Sight, RayCast, and TriggerZone.
- Improved documentation for each detection mode, including performance optimization strategies.
- Introduced PerceptionTriggerProxy for event-driven detection in TriggerZone slots.
- Added SightBatchSystem to manage Sight slots efficiently, reducing CPU spikes during high enemy counts.
- Updated SensorSlotNames to reflect new detection modes and their purposes.
- Enhanced internal logic for detecting targets and managing detection events.
2026-06-02 23:18:20 +08:00
150440495d feat: Register and unregister BatchLOSSystem in EnemyBase lifecycle methods 2026-06-02 16:23:14 +08:00
06048c966a feat: Add HurtBoxOwnerGuard to prevent multiple damage registrations from the same HitBox activation
- Implemented HurtBoxOwnerGuard to ensure that multiple HurtBoxes on the same character do not register damage multiple times during a single HitBox activation.
- Added custom editor for HitBox to facilitate the creation of shape colliders with HitBoxColliderProxy.
- Introduced PhysicsPerceptionSystem for enemy perception, supporting multiple detection modes including RangeCircle, BatchLOS, FanCast, and BoxCast.
- Created EnemyPatrolZone to define patrol and chase areas for enemies, allowing for shared zones among multiple enemies.
- Added BD_IsOutsideZone conditional task for Behavior Designer to check if an enemy or player is outside a defined patrol zone.
2026-06-02 16:10:44 +08:00
bcd8b0e90b feat: Update enemy AI and movement systems
- Enhanced Physics2D layer collision report with new interactions between Player and Enemy layers.
- Refactored BD_InvestigateLastKnown to streamline animation handling and improve readability.
- Simplified BD_MaintainCombatDistance by consolidating movement stop logic.
- Updated BD_MoveToPlayer to set AI phase on start.
- Improved BD_Patrol logic with better handling of stuck states and path failures.
- Enhanced BD_PatrolWaypoints to manage stuck conditions and retry logic more effectively.
- Refined BD_ReturnToHome to remove unnecessary animation calls.
- Updated BD_WalkRandom to ensure AI phase is set correctly on start.
- Improved EnemyAbilityBase to delegate target facing to the movement system.
- Enhanced EnemyBase with new movement methods for better control.
- Refactored EnemyMovement to introduce a new input system for handling movement and facing.
- Added EnemyMoveInput struct to encapsulate movement intentions.
- Updated Physics2DSettings to reflect new layer collision matrix.
- Introduced RTK CLI instructions for optimized command usage.
2026-05-29 17:01:59 +08:00
e24ecc9589 增加mcp 2026-05-29 09:40:11 +08:00
e81e4547e7 添加bd 2026-05-27 16:48:22 +08:00
0082c0b727 移除 bd 2026-05-27 16:28:40 +08:00
0b7568a96f unity mcp 2026-05-27 16:27:34 +08:00
b5916f14c9 跳跃靠墙高度修复 2026-05-27 10:43:59 +08:00
1685a14adf Merge branch 'master' of ssh://git.joywaygames.cn:2222/basegames/zeling_v2 2026-05-26 16:18:22 +08:00
5ad6ed8ae6 feat: Enhance CameraZoneMigrationTool with rectilinear polygon reconstruction and fallback handling
- Implemented a new method for reconstructing rectilinear polygons from trigger points.
- Added a fallback mechanism using nearest neighbor ordering and 2-opt optimization for irregular shapes.
- Updated point sorting to ensure counter-clockwise orientation for polygon colliders.

fix: Suppress validation warnings during batch enemy placement in SceneObjectPlacerTool

- Introduced a static property in EnemyBase to suppress validation warnings during editor object placement.
- Updated SceneObjectPlacerTool to utilize this property when creating enemy game objects.

refactor: Clean up OnValidate method in EnemyBase to respect suppression flag

- Modified OnValidate to check for the suppression flag before logging warnings about missing configurations.
2026-05-26 16:17:24 +08:00
730 changed files with 528817 additions and 27654 deletions

View File

@@ -0,0 +1,11 @@
{
"permissions": {
"dangerouslySkipPermissions": true,
"allow": [
"Read(*)",
"Write(*)",
"Bash(*)",
"mcp__unity-mcp__*"
]
}
}

27
.github/copilot-instructions.md vendored Normal file
View File

@@ -0,0 +1,27 @@
<!-- rtk-instructions v2 -->
# RTK — Token-Optimized CLI
**rtk** is a CLI proxy that filters and compresses command outputs, saving 60-90% tokens.
## Rule
Always prefix shell commands with `rtk`:
```bash
# Instead of: Use:
git status rtk git status
git log -10 rtk git log -10
cargo test rtk cargo test
docker ps rtk docker ps
kubectl get pods rtk kubectl pods
```
## Meta commands (use directly)
```bash
rtk gain # Token savings dashboard
rtk gain --history # Per-command savings history
rtk discover # Find missed rtk opportunities
rtk proxy <cmd> # Run raw (no filtering) but track usage
```
<!-- /rtk-instructions -->

12
.github/hooks/rtk-rewrite.json vendored Normal file
View File

@@ -0,0 +1,12 @@
{
"hooks": {
"PreToolUse": [
{
"type": "command",
"command": "rtk hook copilot",
"cwd": ".",
"timeout": 5
}
]
}
}

13
.rtk/filters.toml Normal file
View File

@@ -0,0 +1,13 @@
# Project-local RTK filters — commit this file with your repo.
# Filters here override user-global and built-in filters.
# Docs: https://github.com/rtk-ai/rtk#custom-filters
schema_version = 1
# Example: suppress build noise from a custom tool
# [filters.my-tool]
# description = "Compact my-tool output"
# match_command = "^my-tool\\s+build"
# strip_ansi = true
# strip_lines_matching = ["^\\s*$", "^Downloading", "^Installing"]
# max_lines = 30
# on_empty = "my-tool: ok"

View File

@@ -15,7 +15,7 @@ MonoBehaviour:
m_DefaultGroup: 9ce5c865a2d3a0840aabdd8ccb3fd4b1
m_currentHash:
serializedVersion: 2
Hash: 3b5a6592fec2f53c65ab132b7f731fb2
Hash: a9d2a5cf9a19a7d6d33bd5b6dde1a117
m_OptimizeCatalogSize: 0
m_BuildRemoteCatalog: 0
m_BundleLocalCatalog: 0
@@ -38,14 +38,16 @@ MonoBehaviour:
m_Id:
m_RemoteCatalogLoadPath:
m_Id:
m_ContentStateBuildPathProfileVariableName:
m_ContentStateBuildPathProfileVariableName: <default settings path>
m_CustomContentStateBuildPath:
m_ContentStateBuildPath:
m_BuildAddressablesWithPlayerBuild: 0
m_overridePlayerVersion: '[UnityEditor.PlayerSettings.bundleVersion]'
m_GroupAssets:
- {fileID: 11400000, guid: cb30dc04fbca5dd468da2ae5dae42b5d, type: 2}
- {fileID: 11400000, guid: c22627c324f1c25498607e9b6e157457, type: 2}
- {fileID: 11400000, guid: dd7101d419030164a8916786fa463075, type: 2}
- {fileID: 11400000, guid: 40cb5914dc3667442b8c550715605949, type: 2}
- {fileID: 11400000, guid: 0123a97ef69d06c429118db4ea81ab47, type: 2}
m_BuildSettings:
m_CompileScriptsInVirtualMode: 0

View File

@@ -16,7 +16,32 @@ MonoBehaviour:
m_Data:
m_SerializedData: []
m_GUID: 9ce5c865a2d3a0840aabdd8ccb3fd4b1
m_SerializeEntries: []
m_SerializeEntries:
- m_GUID: 21f44804d4f68f14595be6c543e06d19
m_Address: SaveSecurityConfig
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 4b467b2bd496d6a48bf14743bf6dc030
m_Address: Localization/ChineseSimplified/UI
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 82fc68d5bb02982459902d03c24068ab
m_Address: Localization/Japanese/UI
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: b2c33f73665e4b149acab3559ee26bca
m_Address: Localization/English/UI
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: df65e76e977a65640a33c3b4a4321155
m_Address: Localization/Korean/UI
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 0
m_Settings: {fileID: 11400000, guid: ea6262c4e52d79d41ab2c167b19171ff, type: 2}
m_SchemaSet:

View File

@@ -0,0 +1,69 @@
%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: bbb281ee3bf0b054c82ac2347e9e782c, type: 3}
m_Name: Enemies
m_EditorClassIdentifier:
m_GroupName: Enemies
m_Data:
m_SerializedData: []
m_GUID: 4784fc796879ff14580834028bdb14ef
m_SerializeEntries:
- m_GUID: 027bcccb70638f143b77f51f3da389dc
m_Address: ENM_Huan
m_ReadOnly: 0
m_SerializedLabels:
- Enemy
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 3d79f19c55fbaaf40b96071ac7f602c0
m_Address: ENM_YouZhi
m_ReadOnly: 0
m_SerializedLabels:
- Enemy
- Poolable
- Preload
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 69accaa6577ec1a4db552c3c31aa28d8
m_Address: ENM_CaoZhi
m_ReadOnly: 0
m_SerializedLabels:
- Enemy
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 6e3d42a02e363ad4ab5079699a37d1d3
m_Address: ENM_ZhiMu
m_ReadOnly: 0
m_SerializedLabels:
- Enemy
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 98db6e6457d39db43a998d00a26aa503
m_Address: ENM_HuangZhi
m_ReadOnly: 0
m_SerializedLabels:
- Enemy
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: a8a4005faff5aa34a83e5dd9b99b74c8
m_Address: ENM_FeiZhi
m_ReadOnly: 0
m_SerializedLabels:
- Enemy
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: e55e94346ed15ce40bc0ae5aa7771ea6
m_Address: ENM_ChaoFeng
m_ReadOnly: 0
m_SerializedLabels:
- Enemy
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 0
m_Settings: {fileID: 11400000, guid: ea6262c4e52d79d41ab2c167b19171ff, type: 2}
m_SchemaSet:
m_Schemas:
- {fileID: 11400000, guid: be5caea07d1f6dc4985f805ec23ddd16, type: 2}
- {fileID: 11400000, guid: 615d2d8d5a373d243954698f3311ca8d, type: 2}

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: a21fed7fb6abbd6458ee5f69cf8cf603
guid: cb30dc04fbca5dd468da2ae5dae42b5d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000

View File

@@ -0,0 +1,67 @@
%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: bbb281ee3bf0b054c82ac2347e9e782c, type: 3}
m_Name: Projectiles
m_EditorClassIdentifier:
m_GroupName: Projectiles
m_Data:
m_SerializedData: []
m_GUID: bbc19cde77c842c4bba9890de6610ffc
m_SerializeEntries:
- m_GUID: 37263e7701fe82d4ba56066888fed4b7
m_Address: PROJ_Boomerang
m_ReadOnly: 0
m_SerializedLabels:
- Poolable
- Preload
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 457a51aa8bf796748a719bf54800755c
m_Address: PROJ_TornadoLarge
m_ReadOnly: 0
m_SerializedLabels:
- Poolable
- Preload
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 4f232046a7e00aa47afa2c243c191167
m_Address: PROJ_WindStone
m_ReadOnly: 0
m_SerializedLabels:
- Poolable
- Preload
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 7718dc6d6f5dfd0408b99b037c35491b
m_Address: PROJ_FeiZhi_Acid
m_ReadOnly: 0
m_SerializedLabels:
- Poolable
- Preload
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 9fe4a83a6355657419e07f7dbbc671cf
m_Address: PROJ_TornadoSmall
m_ReadOnly: 0
m_SerializedLabels:
- Poolable
- Preload
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: bdd51de8b53302048b4d125ce66512e8
m_Address: PROJ_ZhiMu_Acid
m_ReadOnly: 0
m_SerializedLabels:
- Poolable
- Preload
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 0
m_Settings: {fileID: 11400000, guid: ea6262c4e52d79d41ab2c167b19171ff, type: 2}
m_SchemaSet:
m_Schemas:
- {fileID: 11400000, guid: c41845d8fcac4f945b237f315d2980ee, type: 2}
- {fileID: 11400000, guid: e487350fe45e77147b569c566cf73ed3, type: 2}

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 40cb5914dc3667442b8c550715605949
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -17,13 +17,13 @@ MonoBehaviour:
m_SerializedData: []
m_GUID: bb063dcc2b7a95445ba989917306f188
m_SerializeEntries:
- m_GUID: 2a1ec0c1f9a64054f95911d1cda97f6e
m_Address: Assets/_Game/Scenes/Testings/MainMenu.unity
- m_GUID: 5440f86ce09080f448622457c102225f
m_Address: Scene_MainMenu
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 6372e5b8e07d7ae4eb37a184fc8e912d
m_Address: Assets/_Game/Scenes/Persistent.unity
- m_GUID: f11781b557031114087be5fab27f8dd4
m_Address: Scene_Game_Chapter1
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0

View File

@@ -0,0 +1,45 @@
%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: e5d17a21594effb4e9591490b009e7aa, type: 3}
m_Name: Enemies_BundledAssetGroupSchema
m_EditorClassIdentifier:
m_Group: {fileID: 11400000, guid: cb30dc04fbca5dd468da2ae5dae42b5d, type: 2}
m_InternalBundleIdMode: 1
m_Compression: 1
m_IncludeAddressInCatalog: 1
m_IncludeGUIDInCatalog: 1
m_IncludeLabelsInCatalog: 1
m_InternalIdNamingMode: 0
m_CacheClearBehavior: 0
m_IncludeInBuild: 1
m_BundledAssetProviderType:
m_AssemblyName: Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
m_ClassName: UnityEngine.ResourceManagement.ResourceProviders.BundledAssetProvider
m_ForceUniqueProvider: 0
m_UseAssetBundleCache: 1
m_UseAssetBundleCrc: 1
m_UseAssetBundleCrcForCachedBundles: 1
m_UseUWRForLocalBundles: 0
m_Timeout: 0
m_ChunkedTransfer: 0
m_RedirectLimit: -1
m_RetryCount: 0
m_BuildPath:
m_Id: 768ef6c5b40cf3841a6e6188ed781ca3
m_LoadPath:
m_Id: a9ed4dec0ec20c2459505631f5a924dd
m_BundleMode: 0
m_AssetBundleProviderType:
m_AssemblyName: Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
m_ClassName: UnityEngine.ResourceManagement.ResourceProviders.AssetBundleProvider
m_BundleNaming: 0
m_AssetLoadMode: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: be5caea07d1f6dc4985f805ec23ddd16
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,16 @@
%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: 5834b5087d578d24c926ce20cd31e6d6, type: 3}
m_Name: Enemies_ContentUpdateGroupSchema
m_EditorClassIdentifier:
m_Group: {fileID: 11400000, guid: cb30dc04fbca5dd468da2ae5dae42b5d, type: 2}
m_StaticContent: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 615d2d8d5a373d243954698f3311ca8d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,45 @@
%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: e5d17a21594effb4e9591490b009e7aa, type: 3}
m_Name: Projectiles_BundledAssetGroupSchema
m_EditorClassIdentifier:
m_Group: {fileID: 11400000, guid: 40cb5914dc3667442b8c550715605949, type: 2}
m_InternalBundleIdMode: 1
m_Compression: 1
m_IncludeAddressInCatalog: 1
m_IncludeGUIDInCatalog: 1
m_IncludeLabelsInCatalog: 1
m_InternalIdNamingMode: 0
m_CacheClearBehavior: 0
m_IncludeInBuild: 1
m_BundledAssetProviderType:
m_AssemblyName: Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
m_ClassName: UnityEngine.ResourceManagement.ResourceProviders.BundledAssetProvider
m_ForceUniqueProvider: 0
m_UseAssetBundleCache: 1
m_UseAssetBundleCrc: 1
m_UseAssetBundleCrcForCachedBundles: 1
m_UseUWRForLocalBundles: 0
m_Timeout: 0
m_ChunkedTransfer: 0
m_RedirectLimit: -1
m_RetryCount: 0
m_BuildPath:
m_Id: 768ef6c5b40cf3841a6e6188ed781ca3
m_LoadPath:
m_Id: a9ed4dec0ec20c2459505631f5a924dd
m_BundleMode: 0
m_AssetBundleProviderType:
m_AssemblyName: Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
m_ClassName: UnityEngine.ResourceManagement.ResourceProviders.AssetBundleProvider
m_BundleNaming: 0
m_AssetLoadMode: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c41845d8fcac4f945b237f315d2980ee
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,16 @@
%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: 5834b5087d578d24c926ce20cd31e6d6, type: 3}
m_Name: Projectiles_ContentUpdateGroupSchema
m_EditorClassIdentifier:
m_Group: {fileID: 11400000, guid: 40cb5914dc3667442b8c550715605949, type: 2}
m_StaticContent: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: e487350fe45e77147b569c566cf73ed3
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 5c84345088e4b444fa3691e4463195e6
guid: 4b4ef841cdfd15046a8c224e37d8845b
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@@ -21,7 +21,7 @@ MonoBehaviour:
m_GetFontFeaturesAtRuntime: 1
m_missingGlyphCharacter: 0
m_warningsDisabled: 0
m_defaultFontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
m_defaultFontAsset: {fileID: 11400000, guid: c9ebf78286d2b6345b16575012502acc, type: 2}
m_defaultFontAssetPath: Fonts & Materials/
m_defaultFontSize: 36
m_defaultAutoSizeMinRatio: 0.5
@@ -29,18 +29,17 @@ MonoBehaviour:
m_defaultTextMeshProTextContainerSize: {x: 20, y: 5}
m_defaultTextMeshProUITextContainerSize: {x: 200, y: 50}
m_autoSizeTextContainer: 0
m_fallbackFontAssets: []
m_IsTextObjectScaleStatic: 0
m_fallbackFontAssets:
- {fileID: 11400000, guid: c9ebf78286d2b6345b16575012502acc, type: 2}
m_matchMaterialPreset: 1
m_defaultSpriteAsset: {fileID: 11400000, guid: c41005c129ba4d66911b75229fd70b45,
type: 2}
m_defaultSpriteAsset: {fileID: 11400000, guid: c41005c129ba4d66911b75229fd70b45, type: 2}
m_defaultSpriteAssetPath: Sprite Assets/
m_enableEmojiSupport: 1
m_MissingCharacterSpriteUnicode: 0
m_defaultColorGradientPresetsPath: Color Gradient Presets/
m_defaultStyleSheet: {fileID: 11400000, guid: f952c082cb03451daed3ee968ac6c63e,
type: 2}
m_defaultStyleSheet: {fileID: 11400000, guid: f952c082cb03451daed3ee968ac6c63e, type: 2}
m_StyleSheetsResourcePath:
m_leadingCharacters: {fileID: 4900000, guid: d82c1b31c7e74239bff1220585707d2b, type: 3}
m_followingCharacters: {fileID: 4900000, guid: fade42e8bc714b018fac513c043d323b,
type: 3}
m_followingCharacters: {fileID: 4900000, guid: fade42e8bc714b018fac513c043d323b, type: 3}
m_UseModernHangulLineBreakingRules: 0

View File

@@ -61,7 +61,7 @@ AnimationClip:
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0

View File

@@ -1,5 +1,6 @@
fileFormatVersion: 2
guid: 38a94d79d28868442a2120e31405ec0a
guid: 0818225950f9b2d46ba0c9ce61768aa7
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: f3d7c800ddd179c4ea219a53d84ccd7f
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 KiB

View File

@@ -0,0 +1,114 @@
fileFormatVersion: 2
guid: 48a655dcfa038ea47aa6dc165088a9e5
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c37b3afde8efc6443ba0add644006417
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c9ebf78286d2b6345b16575012502acc
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,21 @@
fileFormatVersion: 2
guid: 028abe651ad4d13458a11b7b8fc8c0ff
TrueTypeFontImporter:
externalObjects: {}
serializedVersion: 4
fontSize: 16
forceTextureCase: -2
characterSpacing: 0
characterPadding: 1
includeFontData: 1
fontNames:
- Noto Sans SC
fallbackFontReferences: []
customCharacters:
fontRenderingMode: 0
ascentCalculationMode: 1
useLegacyBoundsCalculation: 0
shouldRoundAdvanceValue: 1
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,28 @@
%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: 96b10c11e6173394a8fa8d9c614b0035, type: 3}
m_Name: CMB_DS_EnemyBody
m_EditorClassIdentifier:
sourceId: Enemy_Body
skillId:
BaseDamage: 1
DamageMultiplier: 1
Type: 0
Category: 0
Flags: 0
Tags: 1
KnockbackForce: 6
HitStunDuration: 0.15
BreakLevel: 1
FxType: 2
ComboWindowDuration: 0
CancelWindowEnd: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: caae9c7600281fe4e8d8637fa3fd2ca1
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ecd5a940b00a1754e9e90535d19955f6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 34d03fe23f5830b4e8abbe28bfbb5e52, type: 3}
m_Name: PROJ_Boomerang_Config
m_EditorClassIdentifier:
DamageSource: {fileID: 11400000, guid: caae9c7600281fe4e8d8637fa3fd2ca1, type: 2}
Speed: 10
Lifetime: 6
LaunchAngleDeg: 0
GravityScale: 0
HomingStrength: 4
PoolKey: PROJ_Boomerang
ParrySpeedMultiplier: 1.2
ParryDamageMultiplier: 2

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 368c944b48f7f254abf7273b489a5de8
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 34d03fe23f5830b4e8abbe28bfbb5e52, type: 3}
m_Name: PROJ_FeiZhi_Acid_Config
m_EditorClassIdentifier:
DamageSource: {fileID: 11400000, guid: caae9c7600281fe4e8d8637fa3fd2ca1, type: 2}
Speed: 9
Lifetime: 4
LaunchAngleDeg: 45
GravityScale: 1
HomingStrength: 4
PoolKey: PROJ_FeiZhi_Acid
ParrySpeedMultiplier: 1.2
ParryDamageMultiplier: 2

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 9d2f30bef133efe458ed2113b1e17d15
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 34d03fe23f5830b4e8abbe28bfbb5e52, type: 3}
m_Name: PROJ_TornadoLarge_Config
m_EditorClassIdentifier:
DamageSource: {fileID: 11400000, guid: caae9c7600281fe4e8d8637fa3fd2ca1, type: 2}
Speed: 0
Lifetime: 5
LaunchAngleDeg: 0
GravityScale: 0
HomingStrength: 4
PoolKey: PROJ_TornadoLarge
ParrySpeedMultiplier: 1.2
ParryDamageMultiplier: 2

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8677a7cb58cf7a0499c5f7592237c456
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 34d03fe23f5830b4e8abbe28bfbb5e52, type: 3}
m_Name: PROJ_TornadoSmall_Config
m_EditorClassIdentifier:
DamageSource: {fileID: 11400000, guid: caae9c7600281fe4e8d8637fa3fd2ca1, type: 2}
Speed: 7
Lifetime: 4
LaunchAngleDeg: 0
GravityScale: 0
HomingStrength: 4
PoolKey: PROJ_TornadoSmall
ParrySpeedMultiplier: 1.2
ParryDamageMultiplier: 2

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 437473018d038ad4c9205a6dba568f94
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 34d03fe23f5830b4e8abbe28bfbb5e52, type: 3}
m_Name: PROJ_WindStone_Config
m_EditorClassIdentifier:
DamageSource: {fileID: 11400000, guid: caae9c7600281fe4e8d8637fa3fd2ca1, type: 2}
Speed: 6
Lifetime: 4
LaunchAngleDeg: -90
GravityScale: 2.5
HomingStrength: 4
PoolKey: PROJ_WindStone
ParrySpeedMultiplier: 1.2
ParryDamageMultiplier: 2

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 54a8109b6ebe8d64491e292718261031
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 34d03fe23f5830b4e8abbe28bfbb5e52, type: 3}
m_Name: PROJ_ZhiMu_Acid_Config
m_EditorClassIdentifier:
DamageSource: {fileID: 11400000, guid: caae9c7600281fe4e8d8637fa3fd2ca1, type: 2}
Speed: 9
Lifetime: 4
LaunchAngleDeg: 45
GravityScale: 1
HomingStrength: 4
PoolKey: PROJ_ZhiMu_Acid
ParrySpeedMultiplier: 1.2
ParryDamageMultiplier: 2

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 347d33b1a5698d148a281e7e77a83886
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -62,7 +62,7 @@ MonoBehaviour:
_NormalizedTimes: []
_Callbacks: []
_Names: []
_Clip: {fileID: 0}
_Clip: {fileID: 7400000, guid: baae11fb27958444d911f8d637448184, type: 2}
_NormalizedStartTime: NaN
damageSource: {fileID: 0}
hitBoxEnter: 0.2
@@ -81,7 +81,7 @@ MonoBehaviour:
_NormalizedTimes: []
_Callbacks: []
_Names: []
_Clip: {fileID: 0}
_Clip: {fileID: 7400000, guid: d199f06821d6b92478f9fd7c3f0cd11d, type: 2}
_NormalizedStartTime: NaN
damageSource: {fileID: 0}
hitBoxEnter: 0.1
@@ -98,6 +98,7 @@ MonoBehaviour:
weaponTrailPrefab: {fileID: 0}
trailColor: {r: 1, g: 1, b: 1, a: 1}
soulPowerGain: 10
hitWeight: 1
references:
version: 2
RefIds: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 924b53b1d7324c74bba05c41fc4c8ac6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 9beaa5af50f8dce428f027e548d67ddf
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -10,14 +10,14 @@ MonoBehaviour:
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: de92221c7c3fb4a42a7cd122a8f97632, type: 3}
m_Name: ABL_Boss_Chaofeng
m_Name: ABL_ChaoFeng_Boomerang
m_EditorClassIdentifier:
skillId:
displayName:
skillId: boomerang
displayName: Boomerang
designNote:
category: 0
skillType: 0
availablePhaseIndices:
availablePhaseIndices: 00000000
attackPatterns: []
vulnerabilityWindows: []
interactionTags: 0
@@ -35,7 +35,7 @@ MonoBehaviour:
NormalizedStart: 0
NormalizedEnd: 0
skillAnimation:
_FadeDuration: 0
_FadeDuration: 0.25
_Speed: 1
_Events:
_NormalizedTimes: []
@@ -44,6 +44,7 @@ MonoBehaviour:
_Clip: {fileID: 0}
_NormalizedStartTime: NaN
cooldown: 0
weight: 1
references:
version: 2
RefIds: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 6076c1b736f69af4c9048d9d4e7ec768
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,50 @@
%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: de92221c7c3fb4a42a7cd122a8f97632, type: 3}
m_Name: ABL_ChaoFeng_FanCombo
m_EditorClassIdentifier:
skillId: fan_combo
displayName: FanCombo
designNote:
category: 0
skillType: 0
availablePhaseIndices: 00000000
attackPatterns: []
vulnerabilityWindows: []
interactionTags: 0
sequenceOnHit: {fileID: 0}
sequenceOnMiss: {fileID: 0}
counterResponses: []
arenaEvents: []
resourceCost:
resourceId:
cost: 0
minRequired: 0
buildsRage: 0
poiseWindow:
Level: 0
NormalizedStart: 0
NormalizedEnd: 0
skillAnimation:
_FadeDuration: 0.25
_Speed: 1
_Events:
_NormalizedTimes: []
_Callbacks: []
_Names: []
_Clip: {fileID: 0}
_NormalizedStartTime: NaN
cooldown: 0
weight: 1.5
references:
version: 2
RefIds: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: b13d174edfd74654188f1cd08f072123
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,50 @@
%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: de92221c7c3fb4a42a7cd122a8f97632, type: 3}
m_Name: ABL_ChaoFeng_TornadoLarge
m_EditorClassIdentifier:
skillId: tornado_large
displayName: TornadoLarge
designNote:
category: 0
skillType: 0
availablePhaseIndices: 00000000
attackPatterns: []
vulnerabilityWindows: []
interactionTags: 0
sequenceOnHit: {fileID: 0}
sequenceOnMiss: {fileID: 0}
counterResponses: []
arenaEvents: []
resourceCost:
resourceId:
cost: 0
minRequired: 0
buildsRage: 0
poiseWindow:
Level: 0
NormalizedStart: 0
NormalizedEnd: 0
skillAnimation:
_FadeDuration: 0.25
_Speed: 1
_Events:
_NormalizedTimes: []
_Callbacks: []
_Names: []
_Clip: {fileID: 0}
_NormalizedStartTime: NaN
cooldown: 0
weight: 0.8
references:
version: 2
RefIds: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 27037bf4ed7188741ba55bb82fdd8fa9
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,50 @@
%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: de92221c7c3fb4a42a7cd122a8f97632, type: 3}
m_Name: ABL_ChaoFeng_TornadoSmall
m_EditorClassIdentifier:
skillId: tornado_small
displayName: TornadoSmall
designNote:
category: 0
skillType: 0
availablePhaseIndices: 00000000
attackPatterns: []
vulnerabilityWindows: []
interactionTags: 0
sequenceOnHit: {fileID: 0}
sequenceOnMiss: {fileID: 0}
counterResponses: []
arenaEvents: []
resourceCost:
resourceId:
cost: 0
minRequired: 0
buildsRage: 0
poiseWindow:
Level: 0
NormalizedStart: 0
NormalizedEnd: 0
skillAnimation:
_FadeDuration: 0.25
_Speed: 1
_Events:
_NormalizedTimes: []
_Callbacks: []
_Names: []
_Clip: {fileID: 0}
_NormalizedStartTime: NaN
cooldown: 0
weight: 1.2
references:
version: 2
RefIds: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 7cb2926dd5b97e64b9e37f07124ae307
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,50 @@
%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: de92221c7c3fb4a42a7cd122a8f97632, type: 3}
m_Name: ABL_ChaoFeng_WindStone
m_EditorClassIdentifier:
skillId: wind_stone
displayName: WindStone
designNote:
category: 0
skillType: 0
availablePhaseIndices: 01000000
attackPatterns: []
vulnerabilityWindows: []
interactionTags: 0
sequenceOnHit: {fileID: 0}
sequenceOnMiss: {fileID: 0}
counterResponses: []
arenaEvents: []
resourceCost:
resourceId:
cost: 0
minRequired: 0
buildsRage: 0
poiseWindow:
Level: 0
NormalizedStart: 0
NormalizedEnd: 0
skillAnimation:
_FadeDuration: 0.25
_Speed: 1
_Events:
_NormalizedTimes: []
_Callbacks: []
_Names: []
_Clip: {fileID: 0}
_NormalizedStartTime: NaN
cooldown: 0
weight: 1
references:
version: 2
RefIds: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 02b79b9dc903c824786ed3cc3c3e225e
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,25 @@
%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: f7dd720bca19fcc49b22106fb65f7652, type: 3}
m_Name: ENM_ChaoFeng_AnimConfig
m_EditorClassIdentifier:
Idle: {fileID: 0}
Walk: {fileID: 0}
Run: {fileID: 0}
Turn: {fileID: 0}
Attack: {fileID: 0}
Hurt: {fileID: 0}
Stagger: {fileID: 0}
KnockUp: {fileID: 0}
Dead: {fileID: 0}
Alert: {fileID: 0}
Investigate: {fileID: 0}

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c0216d0b27f9d09499a7c7485cb044d2
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,41 @@
%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: ed4391dfa14c0304c8932f1ef9f8ce63, type: 3}
m_Name: ENM_ChaoFeng_Stats
m_EditorClassIdentifier:
MaxHP: 50
Defense: 0
WalkSpeed: 2
RunSpeed: 4
AttackDamage: 10
AttackRange: 1.5
AttackCooldown: 1
DetectRange: 6
MaxChaseDistance: 15
LoseLinkTimeout: 2
AlertDuration: 0.6
InvestigateDuration: 3
HomeRadius: 0.5
KnockbackForce: 5
HitStunDuration: 0.3
HitTiers:
heavyHitThreshold: 0
launchThreshold: 0
launchUpForce: 0
launchHorzForce: 0
knockUpDuration: 0
EyeOffset: {x: 0, y: 0.8}
LOSBlockingMask:
serializedVersion: 2
m_Bits: 1
DetectAngleDeg: 0
AlertBroadcastRadius: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: e921dd14e2848404f8418f423fbd4243
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -12,14 +12,14 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: f7dd720bca19fcc49b22106fb65f7652, type: 3}
m_Name: ENM_E001_AnimConfig
m_EditorClassIdentifier:
Idle: {fileID: 0}
Walk: {fileID: 0}
Run: {fileID: 0}
Turn: {fileID: 0}
Idle: {fileID: 7400000, guid: 74d1c2f7f8e5c66409e9090885e7e007, type: 2}
Walk: {fileID: 7400000, guid: b6b9e34e957b9fa4b92e95aaa155099f, type: 2}
Run: {fileID: 7400000, guid: b6b9e34e957b9fa4b92e95aaa155099f, type: 2}
Turn: {fileID: 7400000, guid: c6d78c8270549254f8c777e0c5d4f9bf, type: 2}
Attack: {fileID: 0}
Hurt: {fileID: 0}
Hurt: {fileID: 7400000, guid: 9d5bb5bb32cdb344b80f01d998ed653f, type: 2}
Stagger: {fileID: 0}
KnockUp: {fileID: 0}
Dead: {fileID: 0}
Dead: {fileID: 7400000, guid: 7f07e13e67a5aba4b8a27234e5a84ee6, type: 2}
Alert: {fileID: 0}
Investigate: {fileID: 0}

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 215115dfd334c8343928dc7ed8ed9c36
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: df1d9d27668525644b8838f75ffd86d1
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,27 @@
%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: 9050afa76362dff469c64fbb48c9ff8d, type: 3}
m_Name: ABL_E002_CeilingStrike
m_EditorClassIdentifier:
abilityId: e002_ceiling_strike
attackSequence: []
cooldown: 1.5
telegraphVfxKey:
telegraphDuration: 0
interruptOnHurt: 1
interruptOnStagger: 1
preferredMinRange: 0
preferredMaxRange: 5
requiresLineOfSight: 1
requiresGrounded: 1
exclusionGroup:
priority: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 9094c0fd7780aca488db9408bec2323e
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,25 @@
%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: f7dd720bca19fcc49b22106fb65f7652, type: 3}
m_Name: ENM_E002_AnimConfig
m_EditorClassIdentifier:
Idle: {fileID: 0}
Walk: {fileID: 0}
Run: {fileID: 0}
Turn: {fileID: 0}
Attack: {fileID: 0}
Hurt: {fileID: 0}
Stagger: {fileID: 0}
KnockUp: {fileID: 0}
Dead: {fileID: 0}
Alert: {fileID: 0}
Investigate: {fileID: 0}

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ffe2c8557c1f3d740b9518172c47a725
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,41 @@
%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: ed4391dfa14c0304c8932f1ef9f8ce63, type: 3}
m_Name: ENM_E002_Stats
m_EditorClassIdentifier:
MaxHP: 50
Defense: 0
WalkSpeed: 2
RunSpeed: 4
AttackDamage: 10
AttackRange: 1.5
AttackCooldown: 1
DetectRange: 6
MaxChaseDistance: 15
LoseLinkTimeout: 2
AlertDuration: 0.6
InvestigateDuration: 3
HomeRadius: 0.5
KnockbackForce: 5
HitStunDuration: 0.3
HitTiers:
heavyHitThreshold: 0
launchThreshold: 0
launchUpForce: 0
launchHorzForce: 0
knockUpDuration: 0
EyeOffset: {x: 0, y: 0.8}
LOSBlockingMask:
serializedVersion: 2
m_Bits: 1
DetectAngleDeg: 0
AlertBroadcastRadius: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 05814ecfd4222a44a8d8ef0fd57e49a5
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 42a0211058e56d54c835bb12e020b26a
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c505e682c27726741a49d2a96ad6e017
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,27 @@
%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: 9050afa76362dff469c64fbb48c9ff8d, type: 3}
m_Name: ABL_E003_Fall
m_EditorClassIdentifier:
abilityId: e003_fall
attackSequence: []
cooldown: 1.5
telegraphVfxKey:
telegraphDuration: 0
interruptOnHurt: 1
interruptOnStagger: 1
preferredMinRange: 0
preferredMaxRange: 5
requiresLineOfSight: 1
requiresGrounded: 1
exclusionGroup:
priority: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 85b5fb5f084da5b4891b55ccdf59fe5a
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,25 @@
%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: f7dd720bca19fcc49b22106fb65f7652, type: 3}
m_Name: ENM_E003_AnimConfig
m_EditorClassIdentifier:
Idle: {fileID: 0}
Walk: {fileID: 0}
Run: {fileID: 0}
Turn: {fileID: 0}
Attack: {fileID: 0}
Hurt: {fileID: 0}
Stagger: {fileID: 0}
KnockUp: {fileID: 0}
Dead: {fileID: 0}
Alert: {fileID: 0}
Investigate: {fileID: 0}

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: d952eb2afa4e3c444ab526cd8c17101e
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,41 @@
%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: ed4391dfa14c0304c8932f1ef9f8ce63, type: 3}
m_Name: ENM_E003_Stats
m_EditorClassIdentifier:
MaxHP: 50
Defense: 0
WalkSpeed: 2
RunSpeed: 4
AttackDamage: 10
AttackRange: 1.5
AttackCooldown: 1
DetectRange: 6
MaxChaseDistance: 15
LoseLinkTimeout: 2
AlertDuration: 0.6
InvestigateDuration: 3
HomeRadius: 0.5
KnockbackForce: 5
HitStunDuration: 0.3
HitTiers:
heavyHitThreshold: 0
launchThreshold: 0
launchUpForce: 0
launchHorzForce: 0
knockUpDuration: 0
EyeOffset: {x: 0, y: 0.8}
LOSBlockingMask:
serializedVersion: 2
m_Bits: 1
DetectAngleDeg: 0
AlertBroadcastRadius: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 2e20aefeac08baa498e6f2153c812406
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 68dd1bd5d926aa4488f1d3c67bc88969
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 131b1cbe257c0df4490914d60dd9d45b
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,28 @@
%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: 9050afa76362dff469c64fbb48c9ff8d, type: 3}
m_Name: ABL_E004_Acid
m_EditorClassIdentifier:
abilityId: e004_acid
attackSequence:
- {fileID: 11400000, guid: b0bce0e3cbc007842a69b60d6cf12792, type: 2}
cooldown: 1.5
telegraphVfxKey:
telegraphDuration: 0
interruptOnHurt: 1
interruptOnStagger: 1
preferredMinRange: 0
preferredMaxRange: 5
requiresLineOfSight: 1
requiresGrounded: 1
exclusionGroup:
priority: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: d9537ac857760e541aabf05f7b519e84
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,27 @@
%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: 9050afa76362dff469c64fbb48c9ff8d, type: 3}
m_Name: ABL_E004_Appear
m_EditorClassIdentifier:
abilityId: e004_appear
attackSequence: []
cooldown: 1.5
telegraphVfxKey:
telegraphDuration: 0
interruptOnHurt: 1
interruptOnStagger: 1
preferredMinRange: 0
preferredMaxRange: 5
requiresLineOfSight: 1
requiresGrounded: 1
exclusionGroup:
priority: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: b99aa7c679fcecd49871bfec9439b96a
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,27 @@
%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: 9050afa76362dff469c64fbb48c9ff8d, type: 3}
m_Name: ABL_E004_Bite
m_EditorClassIdentifier:
abilityId: e004_bite
attackSequence: []
cooldown: 1.5
telegraphVfxKey:
telegraphDuration: 0
interruptOnHurt: 1
interruptOnStagger: 1
preferredMinRange: 0
preferredMaxRange: 5
requiresLineOfSight: 1
requiresGrounded: 1
exclusionGroup:
priority: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: cff0e3da4be26be42a3b3332c085bdfc
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,27 @@
%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: 9050afa76362dff469c64fbb48c9ff8d, type: 3}
m_Name: ABL_E004_Flip
m_EditorClassIdentifier:
abilityId: e004_flip
attackSequence: []
cooldown: 1.5
telegraphVfxKey:
telegraphDuration: 0
interruptOnHurt: 1
interruptOnStagger: 1
preferredMinRange: 0
preferredMaxRange: 5
requiresLineOfSight: 1
requiresGrounded: 1
exclusionGroup:
priority: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c43ff9a2528259b48aa83f9f950bb089
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,27 @@
%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: 9050afa76362dff469c64fbb48c9ff8d, type: 3}
m_Name: ABL_E004_HeadSlam
m_EditorClassIdentifier:
abilityId: e004_headslam
attackSequence: []
cooldown: 1.5
telegraphVfxKey:
telegraphDuration: 0
interruptOnHurt: 1
interruptOnStagger: 1
preferredMinRange: 0
preferredMaxRange: 5
requiresLineOfSight: 1
requiresGrounded: 1
exclusionGroup:
priority: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: e31246206a0c7a34fb4350050cf0901f
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,42 @@
%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: 33dae93853f55b34c95cb12fb235c8b6, type: 3}
m_Name: EATK_E004_Acid
m_EditorClassIdentifier:
attackName: EATK_E004_Acid
clip:
_FadeDuration: 0.25
_Speed: 1
_Events:
_NormalizedTimes: []
_Callbacks: []
_Names: []
_Clip: {fileID: 0}
_NormalizedStartTime: NaN
fallbackDuration: 0.8
hitBoxSlot:
hitBoxEnterT: 0.3
hitBoxExitT: 0.55
damageSource: {fileID: 0}
projectileConfig: {fileID: 11400000, guid: 347d33b1a5698d148a281e7e77a83886, type: 2}
projectileCount: 3
spreadAngleDeg: 30
projectileFireT: 0.5
postDelay: 0
lockMovement: 1
hasPoiseWindow: 0
poiseLevel: 1
poiseStartT: 0.1
poiseEndT: 0.55
references:
version: 2
RefIds: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: b0bce0e3cbc007842a69b60d6cf12792
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,25 @@
%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: f7dd720bca19fcc49b22106fb65f7652, type: 3}
m_Name: ENM_E004_AnimConfig
m_EditorClassIdentifier:
Idle: {fileID: 0}
Walk: {fileID: 0}
Run: {fileID: 0}
Turn: {fileID: 0}
Attack: {fileID: 0}
Hurt: {fileID: 0}
Stagger: {fileID: 0}
KnockUp: {fileID: 0}
Dead: {fileID: 0}
Alert: {fileID: 0}
Investigate: {fileID: 0}

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 1cdc4c1944fbee046976435c37b11ace
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,41 @@
%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: ed4391dfa14c0304c8932f1ef9f8ce63, type: 3}
m_Name: ENM_E004_Stats
m_EditorClassIdentifier:
MaxHP: 50
Defense: 0
WalkSpeed: 2
RunSpeed: 4
AttackDamage: 10
AttackRange: 1.5
AttackCooldown: 1
DetectRange: 6
MaxChaseDistance: 15
LoseLinkTimeout: 2
AlertDuration: 0.6
InvestigateDuration: 3
HomeRadius: 0.5
KnockbackForce: 5
HitStunDuration: 0.3
HitTiers:
heavyHitThreshold: 0
launchThreshold: 0
launchUpForce: 0
launchHorzForce: 0
knockUpDuration: 0
EyeOffset: {x: 0, y: 0.8}
LOSBlockingMask:
serializedVersion: 2
m_Bits: 1
DetectAngleDeg: 0
AlertBroadcastRadius: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 2d4955ff6e80d8a42aafe8b1b5bd016f
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: e70b4ff174809a84fb802d48cc16d5a4
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Some files were not shown because too many files have changed in this diff Show More