Compare commits
29 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f1c7a284f6 | ||
|
|
ca2a0f79d1 | ||
|
|
82805b0fa0 | ||
|
|
a065b32856 | ||
|
|
5279a65284 | ||
|
|
94b8c992da | ||
|
|
acaa0ea442 | ||
|
|
0c6899264d | ||
|
|
b61652084d | ||
|
|
d4bdc1651f | ||
|
|
6e1c7ee715 | ||
|
|
c619b97aa4 | ||
|
|
8a6609f2c2 | ||
|
|
f5fe35d36b | ||
|
|
56b365cbe7 | ||
|
|
4dcb732148 | ||
|
|
2521af3a55 | ||
|
|
8cdd6aaa21 | ||
|
|
83c4b6ec3d | ||
|
|
36a8aff783 | ||
|
|
060046a6a6 | ||
|
|
8f2612bda2 | ||
|
|
cdb8261be9 | ||
|
|
89978ddbe8 | ||
|
|
5536428125 | ||
|
|
2e53786aa0 | ||
|
|
215fcd3a76 | ||
|
|
00148863ad | ||
|
|
e571ae2caf |
13
@Progress.md
Normal file
13
@Progress.md
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
# 进度更新
|
||||||
|
- 重构了动画结束处理逻辑,统一使用 EndAnmCom 组件
|
||||||
|
- 简化了技能组件代码,移除了重复的动画处理逻辑
|
||||||
|
- 修复了 SkillCom.ts 中的静态方法调用错误
|
||||||
|
- 将 this.bezierTo 改为 SkillCom.bezierTo 以正确访问静态方法
|
||||||
|
- 添加了 fixedStart 和 fixedEnd 两种新的技能移动方式
|
||||||
|
- 完善了技能移动系统,使其与配置表定义的 AnimType 完全匹配
|
||||||
|
- 为固定位置类型技能添加了动画结束(endType.animationEnd)支持
|
||||||
|
- 实现了动画播放完成后的技能销毁逻辑
|
||||||
|
- 修改了直线技能的结束条件,改为到达目标点时销毁
|
||||||
|
- 移除了不必要的屏幕边界检测
|
||||||
|
- 优化了技能伤害延迟计算逻辑
|
||||||
|
- 为抛物线类型技能添加了基于距离和速度的动态延迟计算
|
||||||
21
@project-status.md
Normal file
21
@project-status.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
# 项目状态报告
|
||||||
|
## 已完成工作
|
||||||
|
- 统一了动画结束事件的处理方式
|
||||||
|
- 优化了代码结构,减少了重复代码
|
||||||
|
- 实现了直线技能的屏幕边界检测
|
||||||
|
- 优化了技能销毁逻辑
|
||||||
|
- 优化了直线技能的结束条件判断
|
||||||
|
- 确保技能行为符合设计意图
|
||||||
|
- 实现了抛物线技能的动态伤害延迟计算
|
||||||
|
- 保持了其他类型技能的默认延迟时间
|
||||||
|
|
||||||
|
## 下一步工作建议
|
||||||
|
- 测试 EndAnmCom 组件在不同类型技能上的表现
|
||||||
|
- 确保动画结束事件能正确触发技能销毁
|
||||||
|
- 确认屏幕尺寸配置是否正确
|
||||||
|
- 测试直线技能在不同方向上的边界检测
|
||||||
|
- 测试直线技能到达目标点时的销毁效果
|
||||||
|
- 验证不同距离和速度下的技能表现
|
||||||
|
- 测试抛物线技能在不同距离下的伤害延迟表现
|
||||||
|
- 验证伤害时机是否与技能动画同步
|
||||||
|
- 考虑是否需要为其他类型技能添加自定义延迟计算
|
||||||
1522
assets/resources/game/gui/card.prefab
Normal file
1522
assets/resources/game/gui/card.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@@ -2,12 +2,12 @@
|
|||||||
"ver": "1.1.50",
|
"ver": "1.1.50",
|
||||||
"importer": "prefab",
|
"importer": "prefab",
|
||||||
"imported": true,
|
"imported": true,
|
||||||
"uuid": "6254c3d4-6f68-45c7-934c-7056d25a93d3",
|
"uuid": "2849e90f-15b2-4082-a7b6-1ff1362f537b",
|
||||||
"files": [
|
"files": [
|
||||||
".json"
|
".json"
|
||||||
],
|
],
|
||||||
"subMetas": {},
|
"subMetas": {},
|
||||||
"userData": {
|
"userData": {
|
||||||
"syncNodeName": "Hero"
|
"syncNodeName": "card"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1482,7 +1482,7 @@
|
|||||||
},
|
},
|
||||||
"_lscale": {
|
"_lscale": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
"x": 1,
|
"x": 0.7,
|
||||||
"y": 1,
|
"y": 1,
|
||||||
"z": 1
|
"z": 1
|
||||||
},
|
},
|
||||||
@@ -1786,7 +1786,7 @@
|
|||||||
},
|
},
|
||||||
"_lscale": {
|
"_lscale": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
"x": 1,
|
"x": 0.7,
|
||||||
"y": 1,
|
"y": 1,
|
||||||
"z": 1
|
"z": 1
|
||||||
},
|
},
|
||||||
@@ -2063,7 +2063,7 @@
|
|||||||
"__id__": 97
|
"__id__": 97
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_active": true,
|
"_active": false,
|
||||||
"_components": [
|
"_components": [
|
||||||
{
|
{
|
||||||
"__id__": 103
|
"__id__": 103
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"__id__": 113
|
"__id__": 113
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_active": true,
|
"_active": false,
|
||||||
"_components": [
|
"_components": [
|
||||||
{
|
{
|
||||||
"__id__": 119
|
"__id__": 119
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,279 +0,0 @@
|
|||||||
[
|
|
||||||
{
|
|
||||||
"__type__": "cc.Prefab",
|
|
||||||
"_name": "Hero",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"_native": "",
|
|
||||||
"data": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"optimizationPolicy": 0,
|
|
||||||
"persistent": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.Node",
|
|
||||||
"_name": "Hero",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"_parent": null,
|
|
||||||
"_children": [
|
|
||||||
{
|
|
||||||
"__id__": 2
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"_active": true,
|
|
||||||
"_components": [
|
|
||||||
{
|
|
||||||
"__id__": 8
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 10
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"_prefab": {
|
|
||||||
"__id__": 12
|
|
||||||
},
|
|
||||||
"_lpos": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0
|
|
||||||
},
|
|
||||||
"_lrot": {
|
|
||||||
"__type__": "cc.Quat",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0,
|
|
||||||
"w": 1
|
|
||||||
},
|
|
||||||
"_lscale": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 1,
|
|
||||||
"y": 1,
|
|
||||||
"z": 1
|
|
||||||
},
|
|
||||||
"_mobility": 0,
|
|
||||||
"_layer": 1073741824,
|
|
||||||
"_euler": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.Node",
|
|
||||||
"_name": "Spine",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"_parent": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_children": [],
|
|
||||||
"_active": true,
|
|
||||||
"_components": [
|
|
||||||
{
|
|
||||||
"__id__": 3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 5
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"_prefab": {
|
|
||||||
"__id__": 7
|
|
||||||
},
|
|
||||||
"_lpos": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0
|
|
||||||
},
|
|
||||||
"_lrot": {
|
|
||||||
"__type__": "cc.Quat",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0,
|
|
||||||
"w": 1
|
|
||||||
},
|
|
||||||
"_lscale": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 1,
|
|
||||||
"y": 1,
|
|
||||||
"z": 1
|
|
||||||
},
|
|
||||||
"_mobility": 0,
|
|
||||||
"_layer": 1073741824,
|
|
||||||
"_euler": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.UITransform",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 2
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 4
|
|
||||||
},
|
|
||||||
"_contentSize": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 100,
|
|
||||||
"height": 100
|
|
||||||
},
|
|
||||||
"_anchorPoint": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "eavoxMfTVNTZQ5Ncin8/IA"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "sp.Skeleton",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 2
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 6
|
|
||||||
},
|
|
||||||
"_customMaterial": null,
|
|
||||||
"_srcBlendFactor": 2,
|
|
||||||
"_dstBlendFactor": 4,
|
|
||||||
"_color": {
|
|
||||||
"__type__": "cc.Color",
|
|
||||||
"r": 255,
|
|
||||||
"g": 255,
|
|
||||||
"b": 255,
|
|
||||||
"a": 255
|
|
||||||
},
|
|
||||||
"_skeletonData": null,
|
|
||||||
"defaultSkin": "",
|
|
||||||
"defaultAnimation": "",
|
|
||||||
"_premultipliedAlpha": true,
|
|
||||||
"_timeScale": 1,
|
|
||||||
"_preCacheMode": -1,
|
|
||||||
"_cacheMode": 0,
|
|
||||||
"_sockets": [],
|
|
||||||
"_useTint": false,
|
|
||||||
"_debugMesh": false,
|
|
||||||
"_debugBones": false,
|
|
||||||
"_debugSlots": false,
|
|
||||||
"_enableBatch": false,
|
|
||||||
"loop": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "bcFVRht+5DyZogkN152H5x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.PrefabInfo",
|
|
||||||
"root": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"asset": {
|
|
||||||
"__id__": 0
|
|
||||||
},
|
|
||||||
"fileId": "d4UPOWdrxLOq8+0uki2YgO",
|
|
||||||
"instance": null,
|
|
||||||
"targetOverrides": null,
|
|
||||||
"nestedPrefabInstanceRoots": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 9
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "9em5Qd7IJDLK7bBlRbsBHx"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "63wUCNn+RFvo5PEvaO4kQ5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.PrefabInfo",
|
|
||||||
"root": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"asset": {
|
|
||||||
"__id__": 0
|
|
||||||
},
|
|
||||||
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
|
|
||||||
"instance": null,
|
|
||||||
"targetOverrides": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 90
|
"__id__": 90
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 92
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 94
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 96
|
"__id__": 92
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1365,74 +1359,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 87
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 89
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1443,7 +1369,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 91
|
"__id__": 87
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1464,7 +1390,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 93
|
"__id__": 89
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1482,7 +1408,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 90
|
"__id__": 90
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 92
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 94
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 96
|
"__id__": 92
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1365,74 +1359,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 87
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 89
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1443,7 +1369,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 91
|
"__id__": 87
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1464,7 +1390,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 93
|
"__id__": 89
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1482,7 +1408,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,90 +0,0 @@
|
|||||||
|
|
||||||
k1.png
|
|
||||||
size: 454,208
|
|
||||||
format: RGBA8888
|
|
||||||
filter: Linear,Linear
|
|
||||||
repeat: none
|
|
||||||
Body
|
|
||||||
rotate: false
|
|
||||||
xy: 321, 60
|
|
||||||
size: 84, 88
|
|
||||||
orig: 128, 128
|
|
||||||
offset: 22, 18
|
|
||||||
index: -1
|
|
||||||
Face 01
|
|
||||||
rotate: false
|
|
||||||
xy: 207, 20
|
|
||||||
size: 112, 52
|
|
||||||
orig: 200, 128
|
|
||||||
offset: 51, 28
|
|
||||||
index: -1
|
|
||||||
Face 02
|
|
||||||
rotate: false
|
|
||||||
xy: 207, 2
|
|
||||||
size: 104, 16
|
|
||||||
orig: 200, 128
|
|
||||||
offset: 56, 34
|
|
||||||
index: -1
|
|
||||||
Face 03
|
|
||||||
rotate: false
|
|
||||||
xy: 207, 74
|
|
||||||
size: 112, 74
|
|
||||||
orig: 200, 128
|
|
||||||
offset: 50, 13
|
|
||||||
index: -1
|
|
||||||
Head
|
|
||||||
rotate: false
|
|
||||||
xy: 2, 3
|
|
||||||
size: 203, 203
|
|
||||||
orig: 280, 280
|
|
||||||
offset: 37, 28
|
|
||||||
index: -1
|
|
||||||
Left Arm
|
|
||||||
rotate: false
|
|
||||||
xy: 375, 13
|
|
||||||
size: 41, 45
|
|
||||||
orig: 64, 64
|
|
||||||
offset: 11, 9
|
|
||||||
index: -1
|
|
||||||
Left Hand
|
|
||||||
rotate: false
|
|
||||||
xy: 383, 161
|
|
||||||
size: 48, 45
|
|
||||||
orig: 64, 64
|
|
||||||
offset: 8, 7
|
|
||||||
index: -1
|
|
||||||
Left Leg
|
|
||||||
rotate: true
|
|
||||||
xy: 321, 18
|
|
||||||
size: 40, 52
|
|
||||||
orig: 64, 64
|
|
||||||
offset: 12, 6
|
|
||||||
index: -1
|
|
||||||
Right Leg
|
|
||||||
rotate: true
|
|
||||||
xy: 321, 18
|
|
||||||
size: 40, 52
|
|
||||||
orig: 64, 64
|
|
||||||
offset: 12, 6
|
|
||||||
index: -1
|
|
||||||
Right Arm
|
|
||||||
rotate: false
|
|
||||||
xy: 407, 64
|
|
||||||
size: 41, 45
|
|
||||||
orig: 64, 64
|
|
||||||
offset: 11, 9
|
|
||||||
index: -1
|
|
||||||
Right Hand
|
|
||||||
rotate: true
|
|
||||||
xy: 407, 111
|
|
||||||
size: 48, 45
|
|
||||||
orig: 64, 64
|
|
||||||
offset: 8, 10
|
|
||||||
index: -1
|
|
||||||
Weapon
|
|
||||||
rotate: false
|
|
||||||
xy: 207, 150
|
|
||||||
size: 174, 56
|
|
||||||
orig: 180, 64
|
|
||||||
offset: 3, 5
|
|
||||||
index: -1
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{"ver":"1.0.1","importer":"*","imported":true,"uuid":"1c73817e-2607-44cd-838a-01ae45bbd135","files":[".atlas",".json"],"subMetas":{},"userData":{}}
|
|
||||||
@@ -1,580 +0,0 @@
|
|||||||
{
|
|
||||||
"skeleton": {
|
|
||||||
"hash": "gb+/032H6y/yhUHAxZJyKUrXWfw=",
|
|
||||||
"spine": "3.8.75",
|
|
||||||
"x": -151.92,
|
|
||||||
"y": -10.85,
|
|
||||||
"width": 294.8,
|
|
||||||
"height": 336.35,
|
|
||||||
"fps": 10,
|
|
||||||
"images": "./items/Knight Gray/Vector Parts/",
|
|
||||||
"audio": "D:/Game/games/spine/items/Knight Gray/Vector Parts"
|
|
||||||
},
|
|
||||||
"bones": [
|
|
||||||
{ "name": "root" },
|
|
||||||
{ "name": "root-bone_006", "parent": "root", "length": 56.22, "rotation": 89.4, "x": 0.14, "y": 33.73 },
|
|
||||||
{ "name": "root-bone_005", "parent": "root", "length": 35.46, "rotation": 261.59, "x": -17.93, "y": 37.64 },
|
|
||||||
{ "name": "root-bone_004", "parent": "root", "length": 34.35, "rotation": 275.19, "x": 19.35, "y": 36.24 },
|
|
||||||
{ "name": "root-bone_006-ext_Body", "parent": "root-bone_006", "rotation": 270.6, "x": 25.27, "y": -0.21 },
|
|
||||||
{ "name": "root-bone_004-ext_Left Leg", "parent": "root-bone_004", "rotation": 91.37, "x": 11.74, "y": 0.49 },
|
|
||||||
{ "name": "root-bone_006-bone_000", "parent": "root-bone_006", "length": 29.84, "rotation": 259.65, "x": 43.93, "y": -17.8 },
|
|
||||||
{ "name": "root-bone_006-bone_002", "parent": "root-bone_006", "length": 31.19, "rotation": 148.48, "x": 41.59, "y": 27.83 },
|
|
||||||
{ "name": "root-bone_006-bone_007", "parent": "root-bone_006", "length": 151.15, "rotation": 357.24, "x": 56.22 },
|
|
||||||
{ "name": "root-bone_005-ext_Right Leg", "parent": "root-bone_005", "rotation": 91.78, "x": 12.69, "y": 0.71 },
|
|
||||||
{ "name": "root-bone_006-bone_000-ext_Left Arm", "parent": "root-bone_006-bone_000", "rotation": 100.44, "x": 9.61, "y": -1.42 },
|
|
||||||
{ "name": "root-bone_006-bone_007-ext_Head", "parent": "root-bone_006-bone_007", "rotation": 273.37, "x": 94.64, "y": 18.24 },
|
|
||||||
{ "name": "root-bone_006-bone_002-bone_003", "parent": "root-bone_006-bone_002", "length": 18.89, "rotation": 358.5, "x": 31.19 },
|
|
||||||
{ "name": "root-bone_006-bone_007-ext_Face 01", "parent": "root-bone_006-bone_007", "rotation": 273.37, "x": 50.67, "y": -8.19 },
|
|
||||||
{ "name": "root-bone_006-bone_002-ext_Right Arm", "parent": "root-bone_006-bone_002", "rotation": 100.91, "x": 9.76, "y": -1.83 },
|
|
||||||
{ "name": "root-bone_006-bone_000-bone_001", "parent": "root-bone_006-bone_000", "length": 23.33, "rotation": 358.01, "x": 29.84 },
|
|
||||||
{ "name": "root-bone_006-bone_002-bone_003-bone_008", "parent": "root-bone_006-bone_002-bone_003", "length": 27.4, "rotation": 213.62, "x": 2.91, "y": -4.01 },
|
|
||||||
{ "name": "root-bone_006-bone_000-bone_001-ext_Weapon", "parent": "root-bone_006-bone_000-bone_001", "rotation": 83.05, "x": 21.41, "y": 60.75 },
|
|
||||||
{ "name": "root-bone_006-bone_000-bone_001-ext_Left Hand", "parent": "root-bone_006-bone_000-bone_001", "rotation": 102.43, "x": 9.48, "y": 0.28 },
|
|
||||||
{ "name": "root-bone_006-bone_002-bone_003-ext_Right Hand", "parent": "root-bone_006-bone_002-bone_003", "rotation": 102.41, "x": 7.46, "y": 1.31 }
|
|
||||||
],
|
|
||||||
"slots": [
|
|
||||||
{ "name": "root-bone_006-bone_000-ext_Left Arm", "bone": "root-bone_006-bone_000-ext_Left Arm", "attachment": "Left Arm" },
|
|
||||||
{ "name": "root-bone_006-bone_000-bone_001-ext_Weapon", "bone": "root-bone_006-bone_000-bone_001-ext_Weapon", "attachment": "Weapon" },
|
|
||||||
{ "name": "root-bone_006-bone_000-bone_001-ext_Left Hand", "bone": "root-bone_006-bone_000-bone_001-ext_Left Hand", "attachment": "Left Hand" },
|
|
||||||
{ "name": "root-bone_004-ext_Left Leg", "bone": "root-bone_004-ext_Left Leg", "attachment": "Left Leg" },
|
|
||||||
{ "name": "root-bone_005-ext_Right Leg", "bone": "root-bone_005-ext_Right Leg", "attachment": "Right Leg" },
|
|
||||||
{ "name": "root-bone_006-ext_Body", "bone": "root-bone_006-ext_Body", "attachment": "Body" },
|
|
||||||
{ "name": "root-bone_006-bone_007-ext_Head", "bone": "root-bone_006-bone_007-ext_Head", "attachment": "Head" },
|
|
||||||
{ "name": "root-bone_006-bone_007-ext_Face 01", "bone": "root-bone_006-bone_007-ext_Face 01", "attachment": "Face 01" },
|
|
||||||
{ "name": "root-bone_006-bone_002-bone_003-ext_Right Hand", "bone": "root-bone_006-bone_002-bone_003-ext_Right Hand", "attachment": "Right Hand" },
|
|
||||||
{ "name": "root-bone_006-bone_002-ext_Right Arm", "bone": "root-bone_006-bone_002-ext_Right Arm", "attachment": "Right Arm" }
|
|
||||||
],
|
|
||||||
"skins": [
|
|
||||||
{
|
|
||||||
"name": "default",
|
|
||||||
"attachments": {
|
|
||||||
"root-bone_006-bone_000-bone_001-ext_Left Hand": {
|
|
||||||
"Left Hand": { "width": 64, "height": 64 }
|
|
||||||
},
|
|
||||||
"root-bone_006-ext_Body": {
|
|
||||||
"Body": { "width": 128, "height": 128 }
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_007-ext_Head": {
|
|
||||||
"Head": { "width": 280, "height": 280 }
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002-ext_Right Arm": {
|
|
||||||
"Right Arm": { "width": 64, "height": 64 }
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002-bone_003-ext_Right Hand": {
|
|
||||||
"Right Hand": { "width": 64, "height": 64 }
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000-bone_001-ext_Weapon": {
|
|
||||||
"Weapon": { "width": 180, "height": 64 }
|
|
||||||
},
|
|
||||||
"root-bone_005-ext_Right Leg": {
|
|
||||||
"Right Leg": { "width": 64, "height": 64 }
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000-ext_Left Arm": {
|
|
||||||
"Left Arm": { "width": 64, "height": 64 }
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_007-ext_Face 01": {
|
|
||||||
"Face 01": { "width": 200, "height": 128 },
|
|
||||||
"Face 02": { "width": 200, "height": 128 },
|
|
||||||
"Face 03": { "width": 200, "height": 128 }
|
|
||||||
},
|
|
||||||
"root-bone_004-ext_Left Leg": {
|
|
||||||
"Left Leg": { "width": 64, "height": 64 }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"animations": {
|
|
||||||
"Attacking": {
|
|
||||||
"bones": {
|
|
||||||
"root-bone_006": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 4.2 },
|
|
||||||
{ "time": 0.2, "angle": 4.48 },
|
|
||||||
{ "time": 0.275, "angle": -13.49 },
|
|
||||||
{ "time": 0.3, "angle": -14.54 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "x": -1.12, "y": 3.35 },
|
|
||||||
{ "time": 0.2, "x": -1.6, "y": 4.31 },
|
|
||||||
{ "time": 0.275, "x": 0.8, "y": -2.1 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 47.01 },
|
|
||||||
{ "time": 0.2, "angle": 48.51 },
|
|
||||||
{ "time": 0.275, "angle": -28.36 },
|
|
||||||
{ "time": 0.3, "angle": -25.38 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000-bone_001": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 16.78, "curve": "stepped" },
|
|
||||||
{ "time": 0.2, "angle": 16.78 },
|
|
||||||
{ "time": 0.275, "angle": -27.03 },
|
|
||||||
{ "time": 0.3, "angle": -23.87 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": -7.81 },
|
|
||||||
{ "time": 0.2, "angle": -10.58 },
|
|
||||||
{ "time": 0.275, "angle": -26.88 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002-bone_003-bone_008": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 3.62 },
|
|
||||||
{ "time": 0.2, "angle": 6.1 },
|
|
||||||
{ "time": 0.275, "angle": 40.37 },
|
|
||||||
{ "time": 0.3, "angle": 41.41 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_007": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 5.61 },
|
|
||||||
{ "time": 0.2, "angle": 6.48 },
|
|
||||||
{ "time": 0.275, "angle": 0.87 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{ "time": 0.1 },
|
|
||||||
{ "time": 0.2, "x": 1.94, "y": 1.11 },
|
|
||||||
{ "time": 0.275, "x": 0.97, "y": 0.56 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Hurt": {
|
|
||||||
"slots": {
|
|
||||||
"root-bone_006-bone_007-ext_Face 01": {
|
|
||||||
"attachment": [
|
|
||||||
{ "name": "Face 03" }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"bones": {
|
|
||||||
"root-bone_004": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 27.58 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "x": -2.95, "y": 7.87 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 11.65 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "x": -0.86, "y": 6.16 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 15.45 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000-bone_001": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": -5.6 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.05, "angle": 8.94 },
|
|
||||||
{ "time": 0.1, "angle": -4.58 },
|
|
||||||
{ "time": 0.15, "angle": -18.09 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002-bone_003-bone_008": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.05, "angle": -8.94 },
|
|
||||||
{ "time": 0.1, "angle": 4.58 },
|
|
||||||
{ "time": 0.15, "angle": 18.09 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_007": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.05, "angle": -9.85 },
|
|
||||||
{ "time": 0.1, "angle": 1.01 },
|
|
||||||
{ "time": 0.15, "angle": 11.87 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Idle": {
|
|
||||||
"bones": {
|
|
||||||
"root-bone_006": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "angle": 2.13 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "x": -0.4, "y": 2.83 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "angle": 3.4 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000-bone_001": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "angle": 6.25 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "angle": -11.19 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002-bone_003-bone_008": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "angle": 9.06 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_007": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.05, "angle": -2.83 },
|
|
||||||
{ "time": 0.2, "angle": 3.15 },
|
|
||||||
{ "time": 0.25, "angle": 5.15 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.05, "x": -2.31, "y": -1.39 },
|
|
||||||
{ "time": 0.2, "x": 2.68, "y": -0.61 },
|
|
||||||
{ "time": 0.25, "x": 4.35, "y": -0.35 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Idle Blink": {
|
|
||||||
"slots": {
|
|
||||||
"root-bone_006-bone_007-ext_Face 01": {
|
|
||||||
"attachment": [
|
|
||||||
{ "time": 0.3, "name": "Face 02" }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"bones": {
|
|
||||||
"root-bone_006": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "angle": 2.13 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "x": -0.4, "y": 2.83 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "angle": 3.4 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000-bone_001": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "angle": 6.25 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "angle": -11.19 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002-bone_003-bone_008": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.2, "angle": 9.06 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_007": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.05, "angle": -2.83 },
|
|
||||||
{ "time": 0.25, "angle": 5.15 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.05, "x": -2.31, "y": -1.39 },
|
|
||||||
{ "time": 0.25, "x": 4.35, "y": -0.35 },
|
|
||||||
{ "time": 0.4 }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Taunt": {
|
|
||||||
"bones": {
|
|
||||||
"root-bone_004": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": -12.01 },
|
|
||||||
{ "time": 0.3, "angle": -9.61 },
|
|
||||||
{ "time": 0.5, "angle": -12.01 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "x": 5.7, "y": 0.39 },
|
|
||||||
{ "time": 0.3, "x": 4.56, "y": 0.31 },
|
|
||||||
{ "time": 0.5, "x": 5.7, "y": 0.39 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_005": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": -17.76 },
|
|
||||||
{ "time": 0.3, "angle": -14.21 },
|
|
||||||
{ "time": 0.5, "angle": -17.76 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "x": 6.07, "y": 0.58 },
|
|
||||||
{ "time": 0.3, "x": 4.86, "y": 0.47 },
|
|
||||||
{ "time": 0.5, "x": 6.07, "y": 0.58 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 3.8 },
|
|
||||||
{ "time": 0.3, "angle": 3.04 },
|
|
||||||
{ "time": 0.5, "angle": 3.8 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "x": 6.46, "y": 7.45 },
|
|
||||||
{ "time": 0.3, "x": 5.17, "y": 5.96 },
|
|
||||||
{ "time": 0.5, "x": 6.46, "y": 7.45 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 17.07 },
|
|
||||||
{ "time": 0.3, "angle": 13.66 },
|
|
||||||
{ "time": 0.5, "angle": 17.07 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "y": -6.99 },
|
|
||||||
{ "time": 0.3, "y": -5.59 },
|
|
||||||
{ "time": 0.5, "y": -6.99 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000-bone_001": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": -19.79 },
|
|
||||||
{ "time": 0.3, "angle": -15.83 },
|
|
||||||
{ "time": 0.5, "angle": -19.79 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "x": 3.53, "y": 1.56 },
|
|
||||||
{ "time": 0.3, "x": 2.83, "y": 1.25 },
|
|
||||||
{ "time": 0.5, "x": 3.53, "y": 1.56 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": -30.01 },
|
|
||||||
{ "time": 0.3, "angle": -24.01 },
|
|
||||||
{ "time": 0.5, "angle": -30.01 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002-bone_003-bone_008": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 44.75 },
|
|
||||||
{ "time": 0.3, "angle": 35.8 },
|
|
||||||
{ "time": 0.5, "angle": 44.75 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_007": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "angle": 7.67 },
|
|
||||||
{ "time": 0.3, "angle": 6.13 },
|
|
||||||
{ "time": 0.5, "angle": 7.67 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.1, "x": 3.4, "y": 1.56 },
|
|
||||||
{ "time": 0.3, "x": 2.72, "y": 1.24 },
|
|
||||||
{ "time": 0.5, "x": 3.4, "y": 1.56 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Walking": {
|
|
||||||
"bones": {
|
|
||||||
"root-bone_004": {
|
|
||||||
"rotate": [
|
|
||||||
{ "angle": -34.88 },
|
|
||||||
{ "time": 0.15, "angle": -6.9 },
|
|
||||||
{ "time": 0.3, "angle": 15.46 },
|
|
||||||
{ "time": 0.45, "angle": -6.9 },
|
|
||||||
{ "time": 0.6, "angle": -34.88 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_005": {
|
|
||||||
"rotate": [
|
|
||||||
{ "angle": 40.24 },
|
|
||||||
{ "time": 0.15, "angle": 6.17 },
|
|
||||||
{ "time": 0.3, "angle": -13.58 },
|
|
||||||
{ "time": 0.45, "angle": 6.17 },
|
|
||||||
{ "time": 0.6, "angle": 40.24 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006": {
|
|
||||||
"rotate": [
|
|
||||||
{ "angle": -4.72 },
|
|
||||||
{ "time": 0.15, "angle": 1.64 },
|
|
||||||
{ "time": 0.3, "angle": -4.72 },
|
|
||||||
{ "time": 0.45, "angle": 1.64 },
|
|
||||||
{ "time": 0.6, "angle": -4.72 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.15, "y": 4.41 },
|
|
||||||
{ "time": 0.3 },
|
|
||||||
{ "time": 0.45, "y": 4.41 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000": {
|
|
||||||
"rotate": [
|
|
||||||
{ "angle": -26.08 },
|
|
||||||
{ "time": 0.15, "angle": -48.44 },
|
|
||||||
{ "time": 0.3, "angle": -70.79 },
|
|
||||||
{ "time": 0.45, "angle": -48.44 },
|
|
||||||
{ "time": 0.6, "angle": -26.08 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_000-bone_001": {
|
|
||||||
"rotate": [
|
|
||||||
{ "angle": 10.29 },
|
|
||||||
{ "time": 0.15, "angle": 16.39 },
|
|
||||||
{ "time": 0.3, "angle": 22.49 },
|
|
||||||
{ "time": 0.45, "angle": 16.39 },
|
|
||||||
{ "time": 0.6, "angle": 10.29 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002": {
|
|
||||||
"rotate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.15, "angle": 39.98 },
|
|
||||||
{ "time": 0.3, "angle": 79.95 },
|
|
||||||
{ "time": 0.45, "angle": 39.98 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_002-bone_003-bone_008": {
|
|
||||||
"rotate": [
|
|
||||||
{ "angle": 4.72 },
|
|
||||||
{ "time": 0.15, "angle": -35.26 },
|
|
||||||
{ "time": 0.3, "angle": -75.24 },
|
|
||||||
{ "time": 0.45, "angle": -35.26 },
|
|
||||||
{ "time": 0.6, "angle": 4.72 }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"root-bone_006-bone_007": {
|
|
||||||
"rotate": [
|
|
||||||
{ "angle": -1.29 },
|
|
||||||
{ "time": 0.05, "angle": -6.45 },
|
|
||||||
{ "time": 0.15, "angle": -0.47 },
|
|
||||||
{ "time": 0.2, "angle": 2.53 },
|
|
||||||
{ "time": 0.3, "angle": -2.13 },
|
|
||||||
{ "time": 0.35, "angle": -4.45 },
|
|
||||||
{ "time": 0.45, "angle": 1 },
|
|
||||||
{ "time": 0.5, "angle": 3.72 },
|
|
||||||
{ "time": 0.6, "angle": -1.29 }
|
|
||||||
],
|
|
||||||
"translate": [
|
|
||||||
{},
|
|
||||||
{ "time": 0.05, "x": -2.12, "y": -0.12 },
|
|
||||||
{ "time": 0.15, "x": 0.7, "y": 0.34 },
|
|
||||||
{ "time": 0.2, "x": 2.12, "y": 0.57 },
|
|
||||||
{ "time": 0.3, "x": -1.06, "y": 0.09 },
|
|
||||||
{ "time": 0.35, "x": -2.66, "y": -0.15 },
|
|
||||||
{ "time": 0.45, "x": 0.53, "y": -0.02 },
|
|
||||||
{ "time": 0.5, "x": 2.13, "y": 0.04 },
|
|
||||||
{ "time": 0.6 }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
{
|
|
||||||
"ver": "1.2.6",
|
|
||||||
"importer": "spine-data",
|
|
||||||
"imported": true,
|
|
||||||
"uuid": "1fd0e272-fdc4-42ee-8576-eef38128235a",
|
|
||||||
"files": [
|
|
||||||
".json"
|
|
||||||
],
|
|
||||||
"subMetas": {},
|
|
||||||
"userData": {}
|
|
||||||
}
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 32 KiB |
@@ -1,42 +0,0 @@
|
|||||||
{
|
|
||||||
"ver": "1.0.26",
|
|
||||||
"importer": "image",
|
|
||||||
"imported": true,
|
|
||||||
"uuid": "696b70ef-b479-40f7-9375-6ad93c67aaf5",
|
|
||||||
"files": [
|
|
||||||
".json",
|
|
||||||
".png"
|
|
||||||
],
|
|
||||||
"subMetas": {
|
|
||||||
"6c48a": {
|
|
||||||
"importer": "texture",
|
|
||||||
"uuid": "696b70ef-b479-40f7-9375-6ad93c67aaf5@6c48a",
|
|
||||||
"displayName": "k1",
|
|
||||||
"id": "6c48a",
|
|
||||||
"name": "texture",
|
|
||||||
"userData": {
|
|
||||||
"wrapModeS": "repeat",
|
|
||||||
"wrapModeT": "repeat",
|
|
||||||
"minfilter": "linear",
|
|
||||||
"magfilter": "linear",
|
|
||||||
"mipfilter": "none",
|
|
||||||
"anisotropy": 0,
|
|
||||||
"isUuid": true,
|
|
||||||
"imageUuidOrDatabaseUri": "696b70ef-b479-40f7-9375-6ad93c67aaf5",
|
|
||||||
"visible": false
|
|
||||||
},
|
|
||||||
"ver": "1.0.22",
|
|
||||||
"imported": true,
|
|
||||||
"files": [
|
|
||||||
".json"
|
|
||||||
],
|
|
||||||
"subMetas": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userData": {
|
|
||||||
"hasAlpha": true,
|
|
||||||
"type": "texture",
|
|
||||||
"fixAlphaTransparencyArtifacts": false,
|
|
||||||
"redirect": "696b70ef-b479-40f7-9375-6ad93c67aaf5@6c48a"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -25,13 +25,13 @@
|
|||||||
"__id__": 8
|
"__id__": 8
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 17
|
"__id__": 16
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 25
|
"__id__": 28
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 37
|
"__id__": 39
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 48
|
"__id__": 48
|
||||||
@@ -41,34 +41,25 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 66
|
"__id__": 66
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 75
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_active": true,
|
"_active": true,
|
||||||
"_components": [
|
"_components": [
|
||||||
{
|
{
|
||||||
"__id__": 84
|
"__id__": 75
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 86
|
"__id__": 77
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 88
|
"__id__": 79
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 90
|
"__id__": 81
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 92
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 94
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 96
|
"__id__": 83
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -235,131 +226,6 @@
|
|||||||
"targetOverrides": null,
|
"targetOverrides": null,
|
||||||
"nestedPrefabInstanceRoots": null
|
"nestedPrefabInstanceRoots": null
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.Node",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"_parent": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_prefab": {
|
|
||||||
"__id__": 9
|
|
||||||
},
|
|
||||||
"__editorExtras__": {}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.PrefabInfo",
|
|
||||||
"root": {
|
|
||||||
"__id__": 8
|
|
||||||
},
|
|
||||||
"asset": {
|
|
||||||
"__uuid__": "198e9c93-3ac9-4564-9d0e-63c9836e509a",
|
|
||||||
"__expectedType__": "cc.Prefab"
|
|
||||||
},
|
|
||||||
"fileId": "54R/aYBglLI4Jn5pm++Jx8",
|
|
||||||
"instance": {
|
|
||||||
"__id__": 10
|
|
||||||
},
|
|
||||||
"targetOverrides": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.PrefabInstance",
|
|
||||||
"fileId": "cdIK+ocxBJRLNeMROksdDi",
|
|
||||||
"prefabRootNode": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"mountedChildren": [],
|
|
||||||
"mountedComponents": [],
|
|
||||||
"propertyOverrides": [
|
|
||||||
{
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 15
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"removedComponents": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
|
||||||
"targetInfo": {
|
|
||||||
"__id__": 12
|
|
||||||
},
|
|
||||||
"propertyPath": [
|
|
||||||
"_name"
|
|
||||||
],
|
|
||||||
"value": "max"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.TargetInfo",
|
|
||||||
"localID": [
|
|
||||||
"54R/aYBglLI4Jn5pm++Jx8"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
|
||||||
"targetInfo": {
|
|
||||||
"__id__": 12
|
|
||||||
},
|
|
||||||
"propertyPath": [
|
|
||||||
"_lpos"
|
|
||||||
],
|
|
||||||
"value": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 0,
|
|
||||||
"y": -0.07,
|
|
||||||
"z": 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
|
||||||
"targetInfo": {
|
|
||||||
"__id__": 12
|
|
||||||
},
|
|
||||||
"propertyPath": [
|
|
||||||
"_lrot"
|
|
||||||
],
|
|
||||||
"value": {
|
|
||||||
"__type__": "cc.Quat",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0,
|
|
||||||
"w": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
|
||||||
"targetInfo": {
|
|
||||||
"__id__": 12
|
|
||||||
},
|
|
||||||
"propertyPath": [
|
|
||||||
"_euler"
|
|
||||||
],
|
|
||||||
"value": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
|
||||||
"targetInfo": {
|
|
||||||
"__id__": 12
|
|
||||||
},
|
|
||||||
"propertyPath": [
|
|
||||||
"_active"
|
|
||||||
],
|
|
||||||
"value": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.Node",
|
"__type__": "cc.Node",
|
||||||
"_name": "anm",
|
"_name": "anm",
|
||||||
@@ -372,17 +238,17 @@
|
|||||||
"_active": true,
|
"_active": true,
|
||||||
"_components": [
|
"_components": [
|
||||||
{
|
{
|
||||||
"__id__": 18
|
"__id__": 9
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 20
|
"__id__": 11
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 22
|
"__id__": 13
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 24
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -419,11 +285,11 @@
|
|||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"__editorExtras__": {},
|
"__editorExtras__": {},
|
||||||
"node": {
|
"node": {
|
||||||
"__id__": 17
|
"__id__": 8
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 10
|
||||||
},
|
},
|
||||||
"_contentSize": {
|
"_contentSize": {
|
||||||
"__type__": "cc.Size",
|
"__type__": "cc.Size",
|
||||||
@@ -447,11 +313,11 @@
|
|||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"__editorExtras__": {},
|
"__editorExtras__": {},
|
||||||
"node": {
|
"node": {
|
||||||
"__id__": 17
|
"__id__": 8
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 12
|
||||||
},
|
},
|
||||||
"_customMaterial": null,
|
"_customMaterial": null,
|
||||||
"_srcBlendFactor": 2,
|
"_srcBlendFactor": 2,
|
||||||
@@ -492,11 +358,11 @@
|
|||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"__editorExtras__": {},
|
"__editorExtras__": {},
|
||||||
"node": {
|
"node": {
|
||||||
"__id__": 17
|
"__id__": 8
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 23
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -524,14 +390,14 @@
|
|||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 26
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"__editorExtras__": {}
|
"__editorExtras__": {}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
"__id__": 25
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"asset": {
|
"asset": {
|
||||||
"__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b",
|
"__uuid__": "e1b8a315-ece3-41a2-941e-a66861753f1b",
|
||||||
@@ -539,7 +405,7 @@
|
|||||||
},
|
},
|
||||||
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
|
"fileId": "c46/YsCPVOJYA4mWEpNYRx",
|
||||||
"instance": {
|
"instance": {
|
||||||
"__id__": 27
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"targetOverrides": null
|
"targetOverrides": null
|
||||||
},
|
},
|
||||||
@@ -553,25 +419,25 @@
|
|||||||
"mountedComponents": [],
|
"mountedComponents": [],
|
||||||
"propertyOverrides": [
|
"propertyOverrides": [
|
||||||
{
|
{
|
||||||
"__id__": 28
|
"__id__": 19
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 30
|
"__id__": 21
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 31
|
"__id__": 22
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 32
|
"__id__": 23
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 33
|
"__id__": 24
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 34
|
"__id__": 25
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 36
|
"__id__": 27
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"removedComponents": []
|
"removedComponents": []
|
||||||
@@ -579,7 +445,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 29
|
"__id__": 20
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_name"
|
"_name"
|
||||||
@@ -595,7 +461,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 29
|
"__id__": 20
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_lpos"
|
"_lpos"
|
||||||
@@ -610,7 +476,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 29
|
"__id__": 20
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_lrot"
|
"_lrot"
|
||||||
@@ -626,7 +492,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 29
|
"__id__": 20
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_euler"
|
"_euler"
|
||||||
@@ -641,7 +507,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 29
|
"__id__": 20
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_active"
|
"_active"
|
||||||
@@ -651,7 +517,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 35
|
"__id__": 26
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_contentSize"
|
"_contentSize"
|
||||||
@@ -671,7 +537,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 29
|
"__id__": 20
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_lscale"
|
"_lscale"
|
||||||
@@ -690,14 +556,14 @@
|
|||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 38
|
"__id__": 29
|
||||||
},
|
},
|
||||||
"__editorExtras__": {}
|
"__editorExtras__": {}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
"__id__": 37
|
"__id__": 28
|
||||||
},
|
},
|
||||||
"asset": {
|
"asset": {
|
||||||
"__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c",
|
"__uuid__": "50c3d5e4-49f8-4bd7-a15b-cda359a0ae5c",
|
||||||
@@ -705,7 +571,7 @@
|
|||||||
},
|
},
|
||||||
"fileId": "5fqU0L3/FOhKaco5UkHuWT",
|
"fileId": "5fqU0L3/FOhKaco5UkHuWT",
|
||||||
"instance": {
|
"instance": {
|
||||||
"__id__": 39
|
"__id__": 30
|
||||||
},
|
},
|
||||||
"targetOverrides": null
|
"targetOverrides": null
|
||||||
},
|
},
|
||||||
@@ -719,22 +585,22 @@
|
|||||||
"mountedComponents": [],
|
"mountedComponents": [],
|
||||||
"propertyOverrides": [
|
"propertyOverrides": [
|
||||||
{
|
{
|
||||||
"__id__": 40
|
"__id__": 31
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 42
|
"__id__": 33
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 43
|
"__id__": 34
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 44
|
"__id__": 35
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 45
|
"__id__": 36
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 47
|
"__id__": 38
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"removedComponents": []
|
"removedComponents": []
|
||||||
@@ -742,7 +608,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 41
|
"__id__": 32
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_name"
|
"_name"
|
||||||
@@ -758,7 +624,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 41
|
"__id__": 32
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_lpos"
|
"_lpos"
|
||||||
@@ -773,7 +639,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 41
|
"__id__": 32
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_lrot"
|
"_lrot"
|
||||||
@@ -789,7 +655,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 41
|
"__id__": 32
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_euler"
|
"_euler"
|
||||||
@@ -804,7 +670,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 46
|
"__id__": 37
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_lpos"
|
"_lpos"
|
||||||
@@ -825,7 +691,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 41
|
"__id__": 32
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_lscale"
|
"_lscale"
|
||||||
@@ -837,6 +703,131 @@
|
|||||||
"z": 1
|
"z": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.Node",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"_parent": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"_prefab": {
|
||||||
|
"__id__": 40
|
||||||
|
},
|
||||||
|
"__editorExtras__": {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.PrefabInfo",
|
||||||
|
"root": {
|
||||||
|
"__id__": 39
|
||||||
|
},
|
||||||
|
"asset": {
|
||||||
|
"__uuid__": "5b4ca49e-0f12-4478-b56d-bf8198b36b90",
|
||||||
|
"__expectedType__": "cc.Prefab"
|
||||||
|
},
|
||||||
|
"fileId": "0d6ZXmA5dHkZxoGONDL2sE",
|
||||||
|
"instance": {
|
||||||
|
"__id__": 41
|
||||||
|
},
|
||||||
|
"targetOverrides": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.PrefabInstance",
|
||||||
|
"fileId": "fe79INE+JI1Jy2Hu0iKLMn",
|
||||||
|
"prefabRootNode": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"mountedChildren": [],
|
||||||
|
"mountedComponents": [],
|
||||||
|
"propertyOverrides": [
|
||||||
|
{
|
||||||
|
"__id__": 42
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 44
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 45
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 46
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 47
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"removedComponents": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
|
"targetInfo": {
|
||||||
|
"__id__": 43
|
||||||
|
},
|
||||||
|
"propertyPath": [
|
||||||
|
"_name"
|
||||||
|
],
|
||||||
|
"value": "tooltip"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.TargetInfo",
|
||||||
|
"localID": [
|
||||||
|
"0d6ZXmA5dHkZxoGONDL2sE"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
|
"targetInfo": {
|
||||||
|
"__id__": 43
|
||||||
|
},
|
||||||
|
"propertyPath": [
|
||||||
|
"_lpos"
|
||||||
|
],
|
||||||
|
"value": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 4.65,
|
||||||
|
"y": 129.718,
|
||||||
|
"z": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
|
"targetInfo": {
|
||||||
|
"__id__": 43
|
||||||
|
},
|
||||||
|
"propertyPath": [
|
||||||
|
"_lrot"
|
||||||
|
],
|
||||||
|
"value": {
|
||||||
|
"__type__": "cc.Quat",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 0,
|
||||||
|
"w": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
|
"targetInfo": {
|
||||||
|
"__id__": 43
|
||||||
|
},
|
||||||
|
"propertyPath": [
|
||||||
|
"_euler"
|
||||||
|
],
|
||||||
|
"value": {
|
||||||
|
"__type__": "cc.Vec3",
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
|
"targetInfo": {
|
||||||
|
"__id__": 43
|
||||||
|
},
|
||||||
|
"propertyPath": [
|
||||||
|
"_active"
|
||||||
|
],
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.Node",
|
"__type__": "cc.Node",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
@@ -854,10 +845,10 @@
|
|||||||
"__id__": 48
|
"__id__": 48
|
||||||
},
|
},
|
||||||
"asset": {
|
"asset": {
|
||||||
"__uuid__": "5b4ca49e-0f12-4478-b56d-bf8198b36b90",
|
"__uuid__": "ae4493bd-cbcc-4392-921c-3e2b0fcd5338",
|
||||||
"__expectedType__": "cc.Prefab"
|
"__expectedType__": "cc.Prefab"
|
||||||
},
|
},
|
||||||
"fileId": "0d6ZXmA5dHkZxoGONDL2sE",
|
"fileId": "91yoyAQGNDm5ziI7NUChZ+",
|
||||||
"instance": {
|
"instance": {
|
||||||
"__id__": 50
|
"__id__": 50
|
||||||
},
|
},
|
||||||
@@ -865,7 +856,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInstance",
|
"__type__": "cc.PrefabInstance",
|
||||||
"fileId": "fe79INE+JI1Jy2Hu0iKLMn",
|
"fileId": "08n1IzuupL3YNn2/tFvc8M",
|
||||||
"prefabRootNode": {
|
"prefabRootNode": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
@@ -898,12 +889,12 @@
|
|||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_name"
|
"_name"
|
||||||
],
|
],
|
||||||
"value": "tooltip"
|
"value": "up"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.TargetInfo",
|
"__type__": "cc.TargetInfo",
|
||||||
"localID": [
|
"localID": [
|
||||||
"0d6ZXmA5dHkZxoGONDL2sE"
|
"91yoyAQGNDm5ziI7NUChZ+"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -916,8 +907,8 @@
|
|||||||
],
|
],
|
||||||
"value": {
|
"value": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
"x": 4.65,
|
"x": 4.302,
|
||||||
"y": 129.718,
|
"y": 45.887,
|
||||||
"z": 0
|
"z": 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -979,10 +970,10 @@
|
|||||||
"__id__": 57
|
"__id__": 57
|
||||||
},
|
},
|
||||||
"asset": {
|
"asset": {
|
||||||
"__uuid__": "ae4493bd-cbcc-4392-921c-3e2b0fcd5338",
|
"__uuid__": "afb84e4d-b478-4ab6-8f14-4f69d7a2c57f",
|
||||||
"__expectedType__": "cc.Prefab"
|
"__expectedType__": "cc.Prefab"
|
||||||
},
|
},
|
||||||
"fileId": "91yoyAQGNDm5ziI7NUChZ+",
|
"fileId": "733PKzwANLyJWD2ume4u5f",
|
||||||
"instance": {
|
"instance": {
|
||||||
"__id__": 59
|
"__id__": 59
|
||||||
},
|
},
|
||||||
@@ -990,7 +981,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInstance",
|
"__type__": "cc.PrefabInstance",
|
||||||
"fileId": "08n1IzuupL3YNn2/tFvc8M",
|
"fileId": "6e93Sa8IZKKa8Fw7xWs/I6",
|
||||||
"prefabRootNode": {
|
"prefabRootNode": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
@@ -1023,12 +1014,12 @@
|
|||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_name"
|
"_name"
|
||||||
],
|
],
|
||||||
"value": "up"
|
"value": "wind"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.TargetInfo",
|
"__type__": "cc.TargetInfo",
|
||||||
"localID": [
|
"localID": [
|
||||||
"91yoyAQGNDm5ziI7NUChZ+"
|
"733PKzwANLyJWD2ume4u5f"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1041,8 +1032,8 @@
|
|||||||
],
|
],
|
||||||
"value": {
|
"value": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
"x": 4.302,
|
"x": 0,
|
||||||
"y": 45.887,
|
"y": 0,
|
||||||
"z": 0
|
"z": 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -1104,10 +1095,10 @@
|
|||||||
"__id__": 66
|
"__id__": 66
|
||||||
},
|
},
|
||||||
"asset": {
|
"asset": {
|
||||||
"__uuid__": "afb84e4d-b478-4ab6-8f14-4f69d7a2c57f",
|
"__uuid__": "3899fa6a-77a8-4809-b34b-64e0daa5674c",
|
||||||
"__expectedType__": "cc.Prefab"
|
"__expectedType__": "cc.Prefab"
|
||||||
},
|
},
|
||||||
"fileId": "733PKzwANLyJWD2ume4u5f",
|
"fileId": "65v9q/98dMjafRlb094Ctr",
|
||||||
"instance": {
|
"instance": {
|
||||||
"__id__": 68
|
"__id__": 68
|
||||||
},
|
},
|
||||||
@@ -1115,7 +1106,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInstance",
|
"__type__": "cc.PrefabInstance",
|
||||||
"fileId": "6e93Sa8IZKKa8Fw7xWs/I6",
|
"fileId": "526SUDeQZOCbXYj7Jb2Rfx",
|
||||||
"prefabRootNode": {
|
"prefabRootNode": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
@@ -1148,131 +1139,6 @@
|
|||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_name"
|
"_name"
|
||||||
],
|
],
|
||||||
"value": "wind"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.TargetInfo",
|
|
||||||
"localID": [
|
|
||||||
"733PKzwANLyJWD2ume4u5f"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
|
||||||
"targetInfo": {
|
|
||||||
"__id__": 70
|
|
||||||
},
|
|
||||||
"propertyPath": [
|
|
||||||
"_lpos"
|
|
||||||
],
|
|
||||||
"value": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
|
||||||
"targetInfo": {
|
|
||||||
"__id__": 70
|
|
||||||
},
|
|
||||||
"propertyPath": [
|
|
||||||
"_lrot"
|
|
||||||
],
|
|
||||||
"value": {
|
|
||||||
"__type__": "cc.Quat",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0,
|
|
||||||
"w": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
|
||||||
"targetInfo": {
|
|
||||||
"__id__": 70
|
|
||||||
},
|
|
||||||
"propertyPath": [
|
|
||||||
"_euler"
|
|
||||||
],
|
|
||||||
"value": {
|
|
||||||
"__type__": "cc.Vec3",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
|
||||||
"targetInfo": {
|
|
||||||
"__id__": 70
|
|
||||||
},
|
|
||||||
"propertyPath": [
|
|
||||||
"_active"
|
|
||||||
],
|
|
||||||
"value": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.Node",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"_parent": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_prefab": {
|
|
||||||
"__id__": 76
|
|
||||||
},
|
|
||||||
"__editorExtras__": {}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.PrefabInfo",
|
|
||||||
"root": {
|
|
||||||
"__id__": 75
|
|
||||||
},
|
|
||||||
"asset": {
|
|
||||||
"__uuid__": "3899fa6a-77a8-4809-b34b-64e0daa5674c",
|
|
||||||
"__expectedType__": "cc.Prefab"
|
|
||||||
},
|
|
||||||
"fileId": "65v9q/98dMjafRlb094Ctr",
|
|
||||||
"instance": {
|
|
||||||
"__id__": 77
|
|
||||||
},
|
|
||||||
"targetOverrides": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.PrefabInstance",
|
|
||||||
"fileId": "526SUDeQZOCbXYj7Jb2Rfx",
|
|
||||||
"prefabRootNode": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"mountedChildren": [],
|
|
||||||
"mountedComponents": [],
|
|
||||||
"propertyOverrides": [
|
|
||||||
{
|
|
||||||
"__id__": 78
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 80
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 81
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 82
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 83
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"removedComponents": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
|
||||||
"targetInfo": {
|
|
||||||
"__id__": 79
|
|
||||||
},
|
|
||||||
"propertyPath": [
|
|
||||||
"_name"
|
|
||||||
],
|
|
||||||
"value": "buff"
|
"value": "buff"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1284,7 +1150,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 79
|
"__id__": 70
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_lpos"
|
"_lpos"
|
||||||
@@ -1299,7 +1165,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 79
|
"__id__": 70
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_lrot"
|
"_lrot"
|
||||||
@@ -1315,7 +1181,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 79
|
"__id__": 70
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_euler"
|
"_euler"
|
||||||
@@ -1330,7 +1196,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "CCPropertyOverrideInfo",
|
"__type__": "CCPropertyOverrideInfo",
|
||||||
"targetInfo": {
|
"targetInfo": {
|
||||||
"__id__": 79
|
"__id__": 70
|
||||||
},
|
},
|
||||||
"propertyPath": [
|
"propertyPath": [
|
||||||
"_active"
|
"_active"
|
||||||
@@ -1347,7 +1213,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 85
|
"__id__": 76
|
||||||
},
|
},
|
||||||
"_contentSize": {
|
"_contentSize": {
|
||||||
"__type__": "cc.Size",
|
"__type__": "cc.Size",
|
||||||
@@ -1365,74 +1231,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 87
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 89
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1443,10 +1241,10 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 91
|
"__id__": 78
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1464,7 +1262,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 93
|
"__id__": 80
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1482,7 +1280,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 95
|
"__id__": 82
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1502,9 +1300,6 @@
|
|||||||
"instance": null,
|
"instance": null,
|
||||||
"targetOverrides": null,
|
"targetOverrides": null,
|
||||||
"nestedPrefabInstanceRoots": [
|
"nestedPrefabInstanceRoots": [
|
||||||
{
|
|
||||||
"__id__": 75
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__id__": 66
|
"__id__": 66
|
||||||
},
|
},
|
||||||
@@ -1515,13 +1310,13 @@
|
|||||||
"__id__": 48
|
"__id__": 48
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 37
|
"__id__": 39
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 25
|
"__id__": 28
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 8
|
"__id__": 16
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 92
|
"__id__": 92
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 94
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 96
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 98
|
"__id__": 94
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1384,74 +1378,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 89
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1462,7 +1388,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 93
|
"__id__": 89
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1483,7 +1409,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1501,7 +1427,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 97
|
"__id__": 93
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 92
|
"__id__": 92
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 94
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 96
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 98
|
"__id__": 94
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1384,74 +1378,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 89
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1462,7 +1388,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 93
|
"__id__": 89
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1483,7 +1409,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1501,7 +1427,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 97
|
"__id__": 93
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 89
|
"__id__": 89
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 93
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1352,74 +1346,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 86
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 88
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1430,7 +1356,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 90
|
"__id__": 86
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1451,7 +1377,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 92
|
"__id__": 88
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1469,7 +1395,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 94
|
"__id__": 90
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -100,7 +100,7 @@
|
|||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
"x": 0,
|
"x": 0,
|
||||||
"y": -11.989,
|
"y": 0,
|
||||||
"z": 0
|
"z": 0
|
||||||
},
|
},
|
||||||
"_lrot": {
|
"_lrot": {
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 92
|
"__id__": 92
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 94
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 96
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 98
|
"__id__": 94
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1384,74 +1378,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 89
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1462,7 +1388,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 93
|
"__id__": 89
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1483,7 +1409,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1501,7 +1427,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 97
|
"__id__": 93
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -59,16 +59,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 92
|
"__id__": 92
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 94
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 96
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 98
|
"__id__": 94
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -1384,74 +1378,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "14OhXRCixNOaApgow/hFbp"
|
"fileId": "14OhXRCixNOaApgow/hFbp"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 89
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 1,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 1,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": true,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8rVs6intBQ7lRU8Dw4zXV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 91
|
|
||||||
},
|
|
||||||
"tag": 0,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": false,
|
|
||||||
"_friction": 1,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -1.8,
|
|
||||||
"y": 37.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 50.8,
|
|
||||||
"height": 78.6
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b2Dt9lJI9FyJCDezkDBPBl"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
"__type__": "a0379fmhvBHcbNcBF/l43O8",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -1462,7 +1388,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 93
|
"__id__": 89
|
||||||
},
|
},
|
||||||
"anm": {
|
"anm": {
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
@@ -1483,7 +1409,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 95
|
"__id__": 91
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -1501,7 +1427,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 97
|
"__id__": 93
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -50,8 +50,8 @@
|
|||||||
"height": 250,
|
"height": 250,
|
||||||
"rawWidth": 1775,
|
"rawWidth": 1775,
|
||||||
"rawHeight": 250,
|
"rawHeight": 250,
|
||||||
"borderTop": 227,
|
"borderTop": 57,
|
||||||
"borderBottom": 0,
|
"borderBottom": 181,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
"borderRight": 0,
|
"borderRight": 0,
|
||||||
"packable": true,
|
"packable": true,
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -95,9 +95,9 @@
|
|||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0,
|
0,
|
||||||
0.16666666666666666,
|
0.1666666716337204,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -162,9 +162,9 @@
|
|||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0,
|
0,
|
||||||
0.16666666666666666,
|
0.1666666716337204,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -229,9 +229,9 @@
|
|||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0,
|
0,
|
||||||
0.16666666666666666,
|
0.1666666716337204,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -347,9 +347,9 @@
|
|||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0,
|
0,
|
||||||
0.16666666666666666,
|
0.1666666716337204,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -414,9 +414,9 @@
|
|||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0,
|
0,
|
||||||
0.16666666666666666,
|
0.1666666716337204,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -545,9 +545,9 @@
|
|||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0,
|
0,
|
||||||
0.16666666666666666,
|
0.1666666716337204,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.4444444444444444
|
0.4444444477558136
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -612,9 +612,9 @@
|
|||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0,
|
0,
|
||||||
0.16666666666666666,
|
0.1666666716337204,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.4444444444444444
|
0.4444444477558136
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -678,8 +678,8 @@
|
|||||||
{
|
{
|
||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0.16666666666666666,
|
0.1666666716337204,
|
||||||
0.2777777777777778
|
0.2777777910232544
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -771,9 +771,9 @@
|
|||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0,
|
0,
|
||||||
0.16666666666666666,
|
0.1666666716337204,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -838,9 +838,9 @@
|
|||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0,
|
0,
|
||||||
0.16666666666666666,
|
0.1666666716337204,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -904,9 +904,9 @@
|
|||||||
{
|
{
|
||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0.16666666666666666,
|
0.1666666716337204,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -1010,8 +1010,8 @@
|
|||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0,
|
0,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.5555555555555556
|
0.5555555820465088
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -1064,8 +1064,8 @@
|
|||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0,
|
0,
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.5555555555555556
|
0.5555555820465088
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -1117,7 +1117,7 @@
|
|||||||
{
|
{
|
||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0.2777777777777778
|
0.2777777910232544
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -1196,8 +1196,8 @@
|
|||||||
{
|
{
|
||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -1237,8 +1237,8 @@
|
|||||||
{
|
{
|
||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -1278,8 +1278,8 @@
|
|||||||
{
|
{
|
||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -1370,8 +1370,8 @@
|
|||||||
{
|
{
|
||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0.3333333333333333,
|
0.3333333432674408,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -1411,8 +1411,8 @@
|
|||||||
{
|
{
|
||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0.3333333333333333,
|
0.3333333432674408,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -1452,8 +1452,8 @@
|
|||||||
{
|
{
|
||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0.3333333333333333,
|
0.3333333432674408,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -1544,8 +1544,8 @@
|
|||||||
{
|
{
|
||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
@@ -1585,8 +1585,8 @@
|
|||||||
{
|
{
|
||||||
"__type__": "cc.RealCurve",
|
"__type__": "cc.RealCurve",
|
||||||
"_times": [
|
"_times": [
|
||||||
0.2777777777777778,
|
0.2777777910232544,
|
||||||
0.6666666666666666
|
0.6666666865348816
|
||||||
],
|
],
|
||||||
"_values": [
|
"_values": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -35,19 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 24
|
"__id__": 24
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 26
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 28
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 30
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 32
|
"__id__": 26
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -407,74 +398,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 23
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 25
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 720,
|
|
||||||
"height": 60
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -485,7 +408,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 27
|
"__id__": 23
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -503,7 +426,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 29
|
"__id__": 25
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -522,24 +445,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "684O4uajxIsKmwoOacfpUS"
|
"fileId": "684O4uajxIsKmwoOacfpUS"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "9e0d3yayihFMKm6st+kCG3D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 31
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "40ZOnM4A1JXoRtABQW5hQD"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|||||||
@@ -29,22 +29,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 10
|
"__id__": 10
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 12
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 20
|
"__id__": 12
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -240,7 +228,7 @@
|
|||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.RigidBody2D",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"__editorExtras__": {},
|
"__editorExtras__": {},
|
||||||
@@ -251,116 +239,12 @@
|
|||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 11
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -2.1,
|
|
||||||
"y": 0.4
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 10,
|
|
||||||
"height": 10
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 15
|
|
||||||
},
|
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "bcCcCZuuJMgIWRgtrud9x7"
|
"fileId": "bcCcCZuuJMgIWRgtrud9x7"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "2332a3ShwFGNr2JGE9vSJPe",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 17
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "70TqaunGpEF6kOj4KFgq1N"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "20503VOc7ZA84sbp8G72pxZ",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 19
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "caJxdB64pLKL+8Y09/9f28"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|||||||
@@ -32,22 +32,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 12
|
"__id__": 12
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -239,74 +227,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 100,
|
|
||||||
"height": 150
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -317,7 +237,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -335,7 +255,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -354,42 +274,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "02vCVFFYtJl6v3JAJsnnzv"
|
"fileId": "02vCVFFYtJl6v3JAJsnnzv"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "c92adevMwxBYYbFjVc25eV9",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 19
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8IJiZ8qBEYoLJBJzL2Wu2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "20503VOc7ZA84sbp8G72pxZ",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 21
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "945q50VupJu781Zu2mK07/"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|||||||
@@ -32,22 +32,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 12
|
"__id__": 12
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -239,74 +227,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 100,
|
|
||||||
"height": 150
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -317,7 +237,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -335,7 +255,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -354,42 +274,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "02vCVFFYtJl6v3JAJsnnzv"
|
"fileId": "02vCVFFYtJl6v3JAJsnnzv"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "c92adevMwxBYYbFjVc25eV9",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 19
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "d8IJiZ8qBEYoLJBJzL2Wu2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "20503VOc7ZA84sbp8G72pxZ",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 21
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "945q50VupJu781Zu2mK07/"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|||||||
@@ -32,22 +32,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 12
|
"__id__": 12
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +230,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -4.5,
|
|
||||||
"y": -2
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 20,
|
|
||||||
"height": 30.1
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +240,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -338,7 +258,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -357,42 +277,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "0cIZpMAklNUpGWSkPm4J6y"
|
"fileId": "0cIZpMAklNUpGWSkPm4J6y"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "2332a3ShwFGNr2JGE9vSJPe",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 19
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "4eMHumwftHy4v/nD7o8Ys6"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "20503VOc7ZA84sbp8G72pxZ",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 21
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "40OmFihABMVpf+JiIpMULa"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|||||||
@@ -32,22 +32,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 12
|
"__id__": 12
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +230,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -4.5,
|
|
||||||
"y": -2
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 20,
|
|
||||||
"height": 30.1
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +240,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -338,7 +258,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -357,42 +277,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "0cIZpMAklNUpGWSkPm4J6y"
|
"fileId": "0cIZpMAklNUpGWSkPm4J6y"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "2332a3ShwFGNr2JGE9vSJPe",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 19
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "206m+aTHJO2byDoskuS+VO"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "20503VOc7ZA84sbp8G72pxZ",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 21
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "9990p7HltMJ4tzRs47Sujy"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|||||||
@@ -38,16 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 16
|
"__id__": 16
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +236,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -4.5,
|
|
||||||
"y": -2
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 20,
|
|
||||||
"height": 30.1
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +246,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -338,7 +264,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -365,9 +291,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -383,9 +309,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -38,16 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 16
|
"__id__": 16
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +236,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": -4.5,
|
|
||||||
"y": -2
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 20,
|
|
||||||
"height": 30.1
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +246,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -338,7 +264,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -365,9 +291,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -383,9 +309,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -35,16 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 14
|
"__id__": 14
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 20
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -239,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 180,
|
|
||||||
"height": 10
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -317,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -333,9 +259,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -351,9 +277,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -28,16 +28,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 6
|
"__id__": 6
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 8
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 10
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 12
|
"__id__": 8
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -96,74 +90,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 5
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 7
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 720,
|
|
||||||
"height": 100
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -174,7 +100,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 9
|
"__id__": 5
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -190,9 +116,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 11
|
"__id__": 7
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -31,16 +31,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 8
|
"__id__": 8
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 10
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 12
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 14
|
"__id__": 10
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -99,74 +93,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "89ju37xNVPJJOPezJpA7XB"
|
"fileId": "89ju37xNVPJJOPezJpA7XB"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 5
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "07uXEQG8ZCE76IrvSTYrAV"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 7
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 10,
|
|
||||||
"height": 10
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "80LDGzzxtKw7YkqT7LlZHv"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -177,7 +103,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 9
|
"__id__": 5
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -193,9 +119,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 11
|
"__id__": 7
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -211,9 +137,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 13
|
"__id__": 9
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -35,16 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 14
|
"__id__": 14
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 20
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -239,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "5cF3YtaNJO6arYWX/tn4cL"
|
"fileId": "5cF3YtaNJO6arYWX/tn4cL"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "4bdBL+TclP+79aZSabYtfK"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 60
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 100,
|
|
||||||
"height": 200
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f70rkggRZACZKqkR8MhiBL"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -317,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -335,7 +261,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -351,9 +277,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -32,16 +32,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 12
|
"__id__": 12
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 18
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -236,74 +230,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 240,
|
|
||||||
"height": 64.4
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -314,7 +240,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -330,9 +256,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -35,16 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 14
|
"__id__": 14
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 20
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -239,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 20,
|
|
||||||
"height": 80
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -317,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -333,9 +259,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -351,9 +277,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -35,19 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 14
|
"__id__": 14
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 120,
|
|
||||||
"height": 80
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -336,9 +259,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -354,9 +277,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -364,24 +287,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "9eF2PAF/ZE4oLd18R/CcWz"
|
"fileId": "9eF2PAF/ZE4oLd18R/CcWz"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "38c69ebGPNGs5g0wcmjNHqR",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 21
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "bfdVeaCtBMqaDUJo24I5td"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|||||||
@@ -38,16 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 16
|
"__id__": 16
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +236,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 100,
|
|
||||||
"height": 180
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +246,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -338,7 +264,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -365,9 +291,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -383,9 +309,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -35,16 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 14
|
"__id__": 14
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 20
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -239,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 100,
|
|
||||||
"height": 180
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -317,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -333,9 +259,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -351,9 +277,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -35,19 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 14
|
"__id__": 14
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 120,
|
|
||||||
"height": 80
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -336,9 +259,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -354,9 +277,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -364,24 +287,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "9eF2PAF/ZE4oLd18R/CcWz"
|
"fileId": "9eF2PAF/ZE4oLd18R/CcWz"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "38c69ebGPNGs5g0wcmjNHqR",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 21
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "bfdVeaCtBMqaDUJo24I5td"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|||||||
@@ -29,25 +29,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 10
|
"__id__": 10
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 12
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 12
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -214,42 +199,6 @@
|
|||||||
"targetOverrides": null,
|
"targetOverrides": null,
|
||||||
"nestedPrefabInstanceRoots": null
|
"nestedPrefabInstanceRoots": null
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 9
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "0f1YvlzyZOLIAHiCyCBXRz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "2e239CwoM1FmoR8QJ5eOtPz",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f32He40X9Am4RqvtcwSlvk"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.UITransform",
|
"__type__": "cc.UITransform",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -260,7 +209,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 13
|
"__id__": 9
|
||||||
},
|
},
|
||||||
"_contentSize": {
|
"_contentSize": {
|
||||||
"__type__": "cc.Size",
|
"__type__": "cc.Size",
|
||||||
@@ -279,7 +228,7 @@
|
|||||||
"fileId": "5cF3YtaNJO6arYWX/tn4cL"
|
"fileId": "5cF3YtaNJO6arYWX/tn4cL"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.RigidBody2D",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"__editorExtras__": {},
|
"__editorExtras__": {},
|
||||||
@@ -288,99 +237,13 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "4bdBL+TclP+79aZSabYtfK"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 17
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 40
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 150,
|
|
||||||
"height": 200
|
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "f70rkggRZACZKqkR8MhiBL"
|
"fileId": "0f1YvlzyZOLIAHiCyCBXRz"
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "6a7fejJxHlM5r/TS8IFF1Kq",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 19
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "dfKETtXCZHLrUfWvYgQ2h5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "38c69ebGPNGs5g0wcmjNHqR",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 21
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "42NYkZlwpLzYnt1C/8jzQe"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
|
|||||||
@@ -29,25 +29,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 10
|
"__id__": 10
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 12
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 12
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -114,8 +99,8 @@
|
|||||||
},
|
},
|
||||||
"_lscale": {
|
"_lscale": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
"x": 2.5,
|
"x": 2.2,
|
||||||
"y": 1.2,
|
"y": 1.8,
|
||||||
"z": 1
|
"z": 1
|
||||||
},
|
},
|
||||||
"_mobility": 0,
|
"_mobility": 0,
|
||||||
@@ -214,42 +199,6 @@
|
|||||||
"targetOverrides": null,
|
"targetOverrides": null,
|
||||||
"nestedPrefabInstanceRoots": null
|
"nestedPrefabInstanceRoots": null
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 9
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "0f1YvlzyZOLIAHiCyCBXRz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "2e239CwoM1FmoR8QJ5eOtPz",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f32He40X9Am4RqvtcwSlvk"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.UITransform",
|
"__type__": "cc.UITransform",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -260,7 +209,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 13
|
"__id__": 9
|
||||||
},
|
},
|
||||||
"_contentSize": {
|
"_contentSize": {
|
||||||
"__type__": "cc.Size",
|
"__type__": "cc.Size",
|
||||||
@@ -279,7 +228,7 @@
|
|||||||
"fileId": "5cF3YtaNJO6arYWX/tn4cL"
|
"fileId": "5cF3YtaNJO6arYWX/tn4cL"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.RigidBody2D",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"__editorExtras__": {},
|
"__editorExtras__": {},
|
||||||
@@ -288,99 +237,13 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "4bdBL+TclP+79aZSabYtfK"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 17
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 120,
|
|
||||||
"height": 80
|
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "f70rkggRZACZKqkR8MhiBL"
|
"fileId": "0f1YvlzyZOLIAHiCyCBXRz"
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "6a7fejJxHlM5r/TS8IFF1Kq",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 19
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "b0xxzph7dOs7/fPyaSemba"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "38c69ebGPNGs5g0wcmjNHqR",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 21
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "22XcJo1ndJmKVyka5mYPkD"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
|
|||||||
@@ -35,16 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 14
|
"__id__": 14
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 20
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -239,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 200,
|
|
||||||
"height": 64.4
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -317,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -333,9 +259,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -351,9 +277,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -32,16 +32,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 12
|
"__id__": 12
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 18
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -233,74 +227,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 399.6,
|
|
||||||
"height": 80
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -311,7 +237,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -327,9 +253,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -35,19 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 14
|
"__id__": 14
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 100,
|
|
||||||
"height": 180
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -336,9 +259,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -354,9 +277,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -364,24 +287,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "35q2dGmmZF2J4J5u44z1jv"
|
"fileId": "35q2dGmmZF2J4J5u44z1jv"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "38c69ebGPNGs5g0wcmjNHqR",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 21
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "81zPueUFdLRbv5pMCz4lFW"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|||||||
@@ -38,19 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 21
|
"__id__": 21
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 23
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 25
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 27
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 29
|
"__id__": 23
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -261,74 +252,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 500
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 10,
|
|
||||||
"height": 10
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -339,7 +262,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 20
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -357,7 +280,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 22
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -376,24 +299,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "684O4uajxIsKmwoOacfpUS"
|
"fileId": "684O4uajxIsKmwoOacfpUS"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "38c69ebGPNGs5g0wcmjNHqR",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 24
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "aeKuNdU4RH0aHU657oxakt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "6a7fejJxHlM5r/TS8IFF1Kq",
|
"__type__": "6a7fejJxHlM5r/TS8IFF1Kq",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -402,9 +307,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 26
|
"__id__": 20
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -420,9 +325,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 28
|
"__id__": 22
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -38,16 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 24
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 26
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 28
|
"__id__": 24
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -271,74 +265,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 17
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 19
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 720,
|
|
||||||
"height": 60
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -349,7 +275,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -367,7 +293,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 23
|
"__id__": 19
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -394,9 +320,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 25
|
"__id__": 21
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -412,9 +338,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 27
|
"__id__": 23
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -35,16 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 12
|
"__id__": 12
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 18
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -191,74 +185,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 9
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0.4,
|
|
||||||
"y": -0.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 11.6,
|
|
||||||
"height": 12.3
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -269,7 +195,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 13
|
"__id__": 9
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -287,7 +213,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -314,9 +240,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -38,16 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 16
|
"__id__": 16
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +236,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 120,
|
|
||||||
"height": 150
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +246,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -338,7 +264,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -365,9 +291,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -383,9 +309,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -38,16 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 16
|
"__id__": 16
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -239,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 120,
|
|
||||||
"height": 300
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -317,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -335,7 +261,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -362,9 +288,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -380,9 +306,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -35,16 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 14
|
"__id__": 14
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 20
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -239,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 27.6
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 180,
|
|
||||||
"height": 100
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -317,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -333,9 +259,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -351,9 +277,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -32,16 +32,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 12
|
"__id__": 12
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 18
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -236,74 +230,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 200,
|
|
||||||
"height": 200
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -314,7 +240,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -330,9 +256,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -26,10 +26,13 @@
|
|||||||
"_components": [
|
"_components": [
|
||||||
{
|
{
|
||||||
"__id__": 8
|
"__id__": 8
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__id__": 10
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 10
|
"__id__": 12
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -224,6 +227,24 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "77z0467LpD9JrxJ4yirYik"
|
"fileId": "77z0467LpD9JrxJ4yirYik"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"__type__": "f140bFcc0VDZIGOeHAB+xwZ",
|
||||||
|
"_name": "",
|
||||||
|
"_objFlags": 0,
|
||||||
|
"__editorExtras__": {},
|
||||||
|
"node": {
|
||||||
|
"__id__": 1
|
||||||
|
},
|
||||||
|
"_enabled": true,
|
||||||
|
"__prefab": {
|
||||||
|
"__id__": 11
|
||||||
|
},
|
||||||
|
"_id": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__type__": "cc.CompPrefabInfo",
|
||||||
|
"fileId": "18p/ymMfpOAYzUdQFqBjOm"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"__type__": "cc.Prefab",
|
"__type__": "cc.Prefab",
|
||||||
"_name": "buff_do",
|
"_name": "max_blue",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"__editorExtras__": {},
|
"__editorExtras__": {},
|
||||||
"_native": "",
|
"_native": "",
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.Node",
|
"__type__": "cc.Node",
|
||||||
"_name": "buff_do",
|
"_name": "max_blue",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"__editorExtras__": {},
|
"__editorExtras__": {},
|
||||||
"_parent": null,
|
"_parent": null,
|
||||||
@@ -32,16 +32,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 12
|
"__id__": 12
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 18
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -233,74 +227,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": false,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": false,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 100,
|
|
||||||
"height": 180
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.Animation",
|
"__type__": "cc.Animation",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -311,7 +237,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -340,7 +266,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -8,6 +8,6 @@
|
|||||||
],
|
],
|
||||||
"subMetas": {},
|
"subMetas": {},
|
||||||
"userData": {
|
"userData": {
|
||||||
"syncNodeName": "buff_do"
|
"syncNodeName": "max_blue"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"__type__": "cc.Prefab",
|
"__type__": "cc.Prefab",
|
||||||
"_name": "buff_do2",
|
"_name": "max_red",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"__editorExtras__": {},
|
"__editorExtras__": {},
|
||||||
"_native": "",
|
"_native": "",
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__type__": "cc.Node",
|
"__type__": "cc.Node",
|
||||||
"_name": "buff_do2",
|
"_name": "max_red",
|
||||||
"_objFlags": 0,
|
"_objFlags": 0,
|
||||||
"__editorExtras__": {},
|
"__editorExtras__": {},
|
||||||
"_parent": null,
|
"_parent": null,
|
||||||
@@ -32,16 +32,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 12
|
"__id__": 12
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 18
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -233,74 +227,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": false,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": false,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 100,
|
|
||||||
"height": 180
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.Animation",
|
"__type__": "cc.Animation",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -311,7 +237,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -340,7 +266,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -8,6 +8,6 @@
|
|||||||
],
|
],
|
||||||
"subMetas": {},
|
"subMetas": {},
|
||||||
"userData": {
|
"userData": {
|
||||||
"syncNodeName": "buff_do2"
|
"syncNodeName": "max_red"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -38,16 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 16
|
"__id__": 16
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +236,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 15,
|
|
||||||
"height": 15
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +246,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -338,7 +264,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -365,9 +291,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -383,9 +309,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -38,16 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 16
|
"__id__": 16
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +236,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 15,
|
|
||||||
"height": 15
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +246,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -338,7 +264,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -365,9 +291,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -383,9 +309,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -38,16 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 16
|
"__id__": 16
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +236,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 15,
|
|
||||||
"height": 15
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +246,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -338,7 +264,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -365,9 +291,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -383,9 +309,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -38,16 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 16
|
"__id__": 16
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +236,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 15,
|
|
||||||
"height": 15
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +246,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -338,7 +264,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -365,9 +291,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -383,9 +309,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -28,16 +28,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 6
|
"__id__": 6
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 8
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 10
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 12
|
"__id__": 8
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -96,74 +90,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 5
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 7
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 240,
|
|
||||||
"height": 100
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -174,7 +100,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 9
|
"__id__": 5
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -190,9 +116,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 11
|
"__id__": 7
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -35,16 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 12
|
"__id__": 12
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 18
|
"__id__": 14
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -191,74 +185,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 9
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0.4,
|
|
||||||
"y": -0.7
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 11.6,
|
|
||||||
"height": 12.3
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -269,7 +195,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 13
|
"__id__": 9
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -287,7 +213,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -314,9 +240,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -38,16 +38,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 16
|
"__id__": 16
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 18
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -239,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": false,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": false,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 100,
|
|
||||||
"height": 180
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.Animation",
|
"__type__": "cc.Animation",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -317,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -346,7 +272,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -362,9 +288,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -380,9 +306,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -41,16 +41,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 22
|
"__id__": 22
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 24
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 26
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 28
|
"__id__": 24
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -378,74 +372,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 17
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 19
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 5,
|
|
||||||
"height": 5
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -456,7 +382,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 21
|
"__id__": 17
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -474,7 +400,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 23
|
"__id__": 19
|
||||||
},
|
},
|
||||||
"playOnLoad": true,
|
"playOnLoad": true,
|
||||||
"_clips": [
|
"_clips": [
|
||||||
@@ -501,9 +427,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 25
|
"__id__": 21
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -519,9 +445,9 @@
|
|||||||
"node": {
|
"node": {
|
||||||
"__id__": 1
|
"__id__": 1
|
||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": false,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 27
|
"__id__": 23
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -224,9 +224,9 @@
|
|||||||
"_dstBlendFactor": 4,
|
"_dstBlendFactor": 4,
|
||||||
"_color": {
|
"_color": {
|
||||||
"__type__": "cc.Color",
|
"__type__": "cc.Color",
|
||||||
"r": 255,
|
"r": 172,
|
||||||
"g": 0,
|
"g": 166,
|
||||||
"b": 0,
|
"b": 166,
|
||||||
"a": 255
|
"a": 255
|
||||||
},
|
},
|
||||||
"_string": "10",
|
"_string": "10",
|
||||||
@@ -628,7 +628,7 @@
|
|||||||
"z": 1
|
"z": 1
|
||||||
},
|
},
|
||||||
"_mobility": 0,
|
"_mobility": 0,
|
||||||
"_layer": 1,
|
"_layer": 1073741824,
|
||||||
"_euler": {
|
"_euler": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
"x": 0,
|
"x": 0,
|
||||||
@@ -678,7 +678,7 @@
|
|||||||
"z": 1
|
"z": 1
|
||||||
},
|
},
|
||||||
"_mobility": 0,
|
"_mobility": 0,
|
||||||
"_layer": 1,
|
"_layer": 1073741824,
|
||||||
"_euler": {
|
"_euler": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
"x": 0,
|
"x": 0,
|
||||||
|
|||||||
@@ -35,19 +35,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__id__": 14
|
"__id__": 14
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 16
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 18
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__id__": 20
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"_prefab": {
|
"_prefab": {
|
||||||
"__id__": 22
|
"__id__": 16
|
||||||
},
|
},
|
||||||
"_lpos": {
|
"_lpos": {
|
||||||
"__type__": "cc.Vec3",
|
"__type__": "cc.Vec3",
|
||||||
@@ -242,74 +233,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
"fileId": "63NP9yq3hEUKD/OZZZ5t7x"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "cc.RigidBody2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 11
|
|
||||||
},
|
|
||||||
"enabledContactListener": true,
|
|
||||||
"bullet": true,
|
|
||||||
"awakeOnLoad": true,
|
|
||||||
"_group": 4,
|
|
||||||
"_type": 2,
|
|
||||||
"_allowSleep": false,
|
|
||||||
"_gravityScale": 0,
|
|
||||||
"_linearDamping": 0,
|
|
||||||
"_angularDamping": 0,
|
|
||||||
"_linearVelocity": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_angularVelocity": 0,
|
|
||||||
"_fixedRotation": false,
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "f1VxV09PdOkofzgGv1tsZE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.BoxCollider2D",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 13
|
|
||||||
},
|
|
||||||
"tag": 8,
|
|
||||||
"_group": 4,
|
|
||||||
"_density": 1,
|
|
||||||
"_sensor": true,
|
|
||||||
"_friction": 0.2,
|
|
||||||
"_restitution": 0,
|
|
||||||
"_offset": {
|
|
||||||
"__type__": "cc.Vec2",
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"_size": {
|
|
||||||
"__type__": "cc.Size",
|
|
||||||
"width": 120,
|
|
||||||
"height": 200
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "23eik112JPZYGiI8mJalTK"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "45646oIyIdA24W+0c5rdELD",
|
"__type__": "45646oIyIdA24W+0c5rdELD",
|
||||||
"_name": "",
|
"_name": "",
|
||||||
@@ -320,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 15
|
"__id__": 11
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -338,7 +261,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 17
|
"__id__": 13
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -356,7 +279,7 @@
|
|||||||
},
|
},
|
||||||
"_enabled": true,
|
"_enabled": true,
|
||||||
"__prefab": {
|
"__prefab": {
|
||||||
"__id__": 19
|
"__id__": 15
|
||||||
},
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
@@ -364,24 +287,6 @@
|
|||||||
"__type__": "cc.CompPrefabInfo",
|
"__type__": "cc.CompPrefabInfo",
|
||||||
"fileId": "c3g/ZwWHVLApO4IpMsx82J"
|
"fileId": "c3g/ZwWHVLApO4IpMsx82J"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"__type__": "38c69ebGPNGs5g0wcmjNHqR",
|
|
||||||
"_name": "",
|
|
||||||
"_objFlags": 0,
|
|
||||||
"__editorExtras__": {},
|
|
||||||
"node": {
|
|
||||||
"__id__": 1
|
|
||||||
},
|
|
||||||
"_enabled": true,
|
|
||||||
"__prefab": {
|
|
||||||
"__id__": 21
|
|
||||||
},
|
|
||||||
"_id": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__type__": "cc.CompPrefabInfo",
|
|
||||||
"fileId": "63gZi2R8ZCoonq9o9vdP0W"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"__type__": "cc.PrefabInfo",
|
"__type__": "cc.PrefabInfo",
|
||||||
"root": {
|
"root": {
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user