更新游戏手感
This commit is contained in:
parent
ae5627532b
commit
6d786e5d62
|
@ -348,19 +348,14 @@ export default class Block extends cc.Component {
|
|||
|
||||
//初始化方块颜色
|
||||
initColor() {
|
||||
|
||||
let name = this.color + "color" + this.block_Info.block;
|
||||
|
||||
let number = Math.floor((this.color - 1) / 2);
|
||||
|
||||
let blockSpriteFrame = MapConroler._instance.Block_Color[number]._spriteFrames;
|
||||
var spriteFrame = blockSpriteFrame[name];
|
||||
|
||||
// if(this.type == BlockType.冻结块){
|
||||
// name = "ice_"+this.block_Info.block;
|
||||
// spriteFrame = this.ice_SpriteFrame._spriteFrames[name];
|
||||
// }
|
||||
|
||||
this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame;
|
||||
}
|
||||
|
||||
|
@ -490,14 +485,16 @@ export default class Block extends cc.Component {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
//移除方块碰撞
|
||||
removeBoxCollider() {
|
||||
for (let i = 0; i < this.node.children.length; i++) {
|
||||
if (this.node.children[i].name == "left" || this.node.children[i].name == "right" || this.node.children[i].name == "top" || this.node.children[i].name == "down")
|
||||
if (this.node.children[i].name == "left" || this.node.children[i].name == "right" || this.node.children[i].name == "top" || this.node.children[i].name == "down"
|
||||
|| this.node.children[i].name == "tan_up_right" || this.node.children[i].name == "tan_up_left" || this.node.children[i].name == "tan_down_right" || this.node.children[i].name == "tan_down_left"
|
||||
)
|
||||
this.node.children[i].destroy();
|
||||
}
|
||||
}
|
||||
|
||||
//移除方块动画
|
||||
removeAction(diraction, type) {
|
||||
this.node.off(cc.Node.EventType.TOUCH_START);
|
||||
this.node.off(cc.Node.EventType.TOUCH_MOVE);
|
||||
|
@ -605,7 +602,7 @@ export default class Block extends cc.Component {
|
|||
this.node.removeFromParent();
|
||||
setTimeout(() => {
|
||||
if (MapConroler._instance.blockNum != 0 && type == true && MapConroler._instance.openWall.length > 0
|
||||
&& !MapConroler._instance.gameOver && MapConroler._instance.gameWin) {
|
||||
&& !MapConroler._instance.gameOver && !MapConroler._instance.gameWin) {
|
||||
let gameover = MapConroler._instance.predict_End();
|
||||
if (gameover == false) {
|
||||
MapConroler._instance.failLevel("lock");
|
||||
|
@ -619,8 +616,6 @@ export default class Block extends cc.Component {
|
|||
|
||||
}
|
||||
|
||||
|
||||
|
||||
touchStart(event) {
|
||||
if (this.over || MapConroler._instance.gameOver) return;
|
||||
// 返回世界坐标
|
||||
|
@ -719,12 +714,6 @@ export default class Block extends cc.Component {
|
|||
|
||||
touchMove(event: cc.Event.EventTouch) {
|
||||
if (MapConroler._instance.gameOver) return;
|
||||
// const currentTime = Date.now();
|
||||
// // 如果距离上次移动时间小于间隔时间,直接返回
|
||||
// if (currentTime - this.lastMoveTime < this.moveInterval) {
|
||||
// return;
|
||||
// }
|
||||
// this.lastMoveTime = currentTime;
|
||||
|
||||
if (this.isTouch) {
|
||||
const delta = event.getDelta();
|
||||
|
@ -754,7 +743,7 @@ export default class Block extends cc.Component {
|
|||
exceeds(stepx, stepy) {
|
||||
|
||||
}
|
||||
|
||||
//道具消除
|
||||
eliminate() {
|
||||
clearTimeout(this.scheduleCallback2);
|
||||
clearTimeout(this.scheduleCallback);
|
||||
|
@ -939,7 +928,7 @@ export default class Block extends cc.Component {
|
|||
this.node.removeFromParent();
|
||||
setTimeout(() => {
|
||||
if (MapConroler._instance.blockNum != 0 && MapConroler._instance.openWall.length > 0
|
||||
&& !MapConroler._instance.gameOver && MapConroler._instance.gameWin) {
|
||||
&& !MapConroler._instance.gameOver && !MapConroler._instance.gameWin) {
|
||||
let gameover = MapConroler._instance.predict_End();
|
||||
if (gameover == false) {
|
||||
MapConroler._instance.failLevel("lock");
|
||||
|
@ -959,6 +948,7 @@ export default class Block extends cc.Component {
|
|||
this.scheduleCallback = null;
|
||||
}
|
||||
}
|
||||
//震动方法
|
||||
setVibrate(type, count) {
|
||||
// return;
|
||||
// console.log("最新:",cc.fx.GameConfig.GM_INFO.vibrateOpen,type);
|
||||
|
@ -1013,7 +1003,7 @@ export default class Block extends cc.Component {
|
|||
let cm: any = cc.director.getCollisionManager();
|
||||
cm.update();
|
||||
}
|
||||
|
||||
//恢复成一般方块
|
||||
restoreNomal(posX, posY, type) {
|
||||
this.type = 0;
|
||||
this.block_Info.node = null;
|
||||
|
@ -1316,6 +1306,7 @@ export default class Block extends cc.Component {
|
|||
const distance = Math.sqrt(Math.pow(newX - this.node.x, 2) + Math.pow(newY - this.node.y, 2));
|
||||
let mag = Math.round(delta.mag());
|
||||
|
||||
// 脱离接触恢复可移动状态
|
||||
if (this.moveY === 1) {
|
||||
if (this.touchPointY <= this.node.y + this.node.height / 2) {
|
||||
this.moveY = 0;
|
||||
|
@ -1325,7 +1316,6 @@ export default class Block extends cc.Component {
|
|||
this.moveY = 0;
|
||||
}
|
||||
}
|
||||
|
||||
if (this.moveX === 1) {
|
||||
if (this.touchPointX <= this.node.x - this.node.width / 2) {
|
||||
this.moveX = 0;
|
||||
|
@ -1339,6 +1329,7 @@ export default class Block extends cc.Component {
|
|||
else {
|
||||
}
|
||||
}
|
||||
//恢复的时候,如果追的距离超过100,则分段移动,避免穿透
|
||||
if (distance > 100) {
|
||||
mag = 10;
|
||||
const speedScale = 0.5;
|
||||
|
@ -1531,6 +1522,27 @@ export default class Block extends cc.Component {
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// 边角弹开 避免卡死
|
||||
Bounce(name) {
|
||||
let distance = 3;
|
||||
if (name == "tan_down_left") {
|
||||
this.node.x = this.node.x + distance;
|
||||
this.node.y = this.node.y + distance;
|
||||
}
|
||||
else if (name == "tan_up_right") {
|
||||
this.node.x = this.node.x - distance;
|
||||
this.node.y = this.node.y - distance;
|
||||
}
|
||||
else if (name == "tan_down_right") {
|
||||
this.node.x = this.node.x - distance;
|
||||
this.node.y = this.node.y + distance;
|
||||
}
|
||||
else if (name == "tan_up_left") {
|
||||
this.node.x = this.node.x + distance;
|
||||
this.node.y = this.node.y - distance;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -143,11 +143,12 @@ export default class JiaZai extends cc.Component {
|
|||
cc.fx.StorageMessage.setStorage("music", audioInfo);
|
||||
|
||||
if (cc.fx.GameConfig.GM_INFO.openid != "") {
|
||||
//console.log("————————发送注册事件");
|
||||
console.log("————————发送注册事件");
|
||||
const time = cc.fx.GameTool.formatDate(new Date());
|
||||
let data = {
|
||||
register_time: time, // 注册时间
|
||||
}
|
||||
console.log("注册时间:", time);
|
||||
cc.fx.GameTool.shushu_Track("register", data);
|
||||
MiniGameSdk.API.shushu_SetSuperProperties(time, false);
|
||||
}
|
||||
|
@ -302,7 +303,7 @@ export default class JiaZai extends cc.Component {
|
|||
this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp;
|
||||
}
|
||||
if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) {
|
||||
MiniGameSdk.API.showToast("恢复一点体力");
|
||||
// MiniGameSdk.API.showToast("恢复一点体力");
|
||||
cc.fx.GameTool.setUserHealth(1, (data) => {
|
||||
cc.fx.GameTool.getHealth((data) => {
|
||||
this.setHealthInfo(true);
|
||||
|
@ -673,7 +674,7 @@ export default class JiaZai extends cc.Component {
|
|||
cc.fx.GameConfig.GM_INFO.hp = 7;
|
||||
}
|
||||
let title = "充值补发奖励金币:" + coinTemp;
|
||||
MiniGameSdk.API.showToast(title);
|
||||
// MiniGameSdk.API.showToast(title);
|
||||
cc.fx.GameTool.shopBuy(productId, true);
|
||||
console.log("充值成功获得金币");
|
||||
} else {
|
||||
|
|
|
@ -1545,7 +1545,7 @@ export default class MapConroler extends cc.Component {
|
|||
|
||||
if (this.blockNum == 0 && !this.gameWin && !this.gameOver) {
|
||||
// alert("游戏成功");
|
||||
MiniGameSdk.API.showToast(cc.fx.GameConfig.GM_INFO.level);
|
||||
// MiniGameSdk.API.showToast(cc.fx.GameConfig.GM_INFO.level);
|
||||
this.gameWin = true;
|
||||
if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) {
|
||||
console.log("恢复一点体力", cc.fx.GameConfig.GM_INFO.level);
|
||||
|
@ -1608,7 +1608,7 @@ export default class MapConroler extends cc.Component {
|
|||
}
|
||||
|
||||
winLevel() {
|
||||
MiniGameSdk.API.showToast(cc.fx.GameConfig.GM_INFO.level);
|
||||
// MiniGameSdk.API.showToast(cc.fx.GameConfig.GM_INFO.level);
|
||||
if (this.node.parent.parent.getChildByName("Win").getChildByName("tween").
|
||||
getChildByName("nextBtn").getComponent("btnControl")._touch == false) {
|
||||
return;
|
||||
|
@ -3121,7 +3121,7 @@ export default class MapConroler extends cc.Component {
|
|||
|
||||
// diguan 动画
|
||||
cc.tween(diguan)
|
||||
.delay(0.15)
|
||||
.delay(0.3)
|
||||
.to(0.15, { scale: 2.15 }, { easing: 'backOut' })
|
||||
.to(0.08, { scale: 1.9 }, { easing: 'quadIn' })
|
||||
.to(0.06, { scale: 2.05 }, { easing: 'quadOut' })
|
||||
|
|
|
@ -216,7 +216,7 @@ export default class SceneManager extends cc.Component {
|
|||
if (this.node.getChildByName("Pause").getChildByName("btn").getComponent("btnControl")._touch) {
|
||||
this.closePause();
|
||||
if (MapConroler._instance.gameStart == true) {
|
||||
MiniGameSdk.API.showToast("体力值减少");
|
||||
// MiniGameSdk.API.showToast("体力值减少");
|
||||
if (MapConroler._instance.count_Time) {
|
||||
let overTime = Date.now();
|
||||
let count_Time = overTime - MapConroler._instance.count_Time;
|
||||
|
|
|
@ -1192,7 +1192,7 @@ export namespace MiniGameSdk {
|
|||
current_health: cc.fx.GameConfig.GM_INFO.hp, //当前体力值
|
||||
tmp_coin: cc.fx.GameConfig.GM_INFO.coin,//当前金币
|
||||
version: cc.fx.GameConfig.GM_INFO.version.toString(),//当前版本号
|
||||
uid: cc.fx.GameConfig.GM_INFO.uid, //用户id
|
||||
uid: (cc.fx.GameConfig.GM_INFO.uid + ""), //用户id
|
||||
};
|
||||
if (register_time != null) {
|
||||
console.log("设置用户公共属性注册:————————————", register_time);
|
||||
|
@ -1202,18 +1202,18 @@ export namespace MiniGameSdk {
|
|||
tmp_coin: cc.fx.GameConfig.GM_INFO.coin,//当前金币
|
||||
version: cc.fx.GameConfig.GM_INFO.version.toString(),
|
||||
register_time: register_time,
|
||||
uid: cc.fx.GameConfig.GM_INFO.uid, //用户id
|
||||
uid: (cc.fx.GameConfig.GM_INFO.uid + ""), //用户id
|
||||
pay_user: pay_user
|
||||
};
|
||||
}
|
||||
if (pay_user != null) {
|
||||
if (pay_user != null && pay_user != false) {
|
||||
console.log("设置用户公共属性支付:————————————", pay_user);
|
||||
superProperties = {
|
||||
current_level: (cc.fx.GameConfig.GM_INFO.level + 1), //当前关卡等级 number
|
||||
current_health: cc.fx.GameConfig.GM_INFO.hp, //当前体力值
|
||||
tmp_coin: cc.fx.GameConfig.GM_INFO.coin,//当前金币
|
||||
version: cc.fx.GameConfig.GM_INFO.version.toString(),
|
||||
uid: cc.fx.GameConfig.GM_INFO.uid, //用户id
|
||||
uid: (cc.fx.GameConfig.GM_INFO.uid + ""), //用户id
|
||||
pay_user: pay_user
|
||||
}
|
||||
}
|
||||
|
@ -1300,7 +1300,7 @@ export namespace MiniGameSdk {
|
|||
name: cc.fx.GameConfig.GM_INFO.openid,
|
||||
version: cc.fx.GameConfig.GM_INFO.version,
|
||||
openid: cc.fx.GameConfig.GM_INFO.openid,
|
||||
enable_sync_attribution: false,
|
||||
enable_sync_attribution: false,//渠道归因
|
||||
})
|
||||
.then((res) => {
|
||||
console.log("引力引擎初始化成功", res)
|
||||
|
|
|
@ -10,12 +10,12 @@ import Graphics = cc.Graphics;
|
|||
import Node = cc.Node;
|
||||
import macro = cc.macro;
|
||||
import Color = cc.Color;
|
||||
import {LQCollideShape, LQCollideStatus} from "../lq_base/data/lq_const";
|
||||
import {LQCollideConfig, LQCollideInfoList} from "./lq_collide_config";
|
||||
import {LQCollideSystem} from "./lq_collide_system";
|
||||
import {LQRect} from "../lq_base/data/lq_data";
|
||||
import {LQCollideBase} from "./lq_collide_base";
|
||||
import {LQGameUtil} from "../lq_base/util/lq_game_util";
|
||||
import { LQCollideShape, LQCollideStatus } from "../lq_base/data/lq_const";
|
||||
import { LQCollideConfig, LQCollideInfoList } from "./lq_collide_config";
|
||||
import { LQCollideSystem } from "./lq_collide_system";
|
||||
import { LQRect } from "../lq_base/data/lq_data";
|
||||
import { LQCollideBase } from "./lq_collide_base";
|
||||
import { LQGameUtil } from "../lq_base/util/lq_game_util";
|
||||
import MapConroler from "../Map";
|
||||
|
||||
@ccclass
|
||||
|
@ -23,7 +23,7 @@ import MapConroler from "../Map";
|
|||
@menu("lq/collide")
|
||||
export class LQCollide extends Component {
|
||||
velocity: any;
|
||||
@property({displayName: '绘制形状'})
|
||||
@property({ displayName: '绘制形状' })
|
||||
get draw_collide(): boolean {
|
||||
return this._draw_collide;
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ export class LQCollide extends Component {
|
|||
@property
|
||||
protected _draw_collide: boolean = true;
|
||||
|
||||
@property({tooltip: '能否移动'})
|
||||
@property({ tooltip: '能否移动' })
|
||||
protected can_move: boolean = true;
|
||||
|
||||
|
||||
|
@ -76,13 +76,13 @@ export class LQCollide extends Component {
|
|||
this.collide_group_id = LQCollideSystem.get_group_by_index(value).id;
|
||||
}
|
||||
|
||||
@property({serializable: false})
|
||||
@property({ serializable: false })
|
||||
private _collide_group_index = -1;
|
||||
|
||||
@property({visible: false})
|
||||
@property({ visible: false })
|
||||
protected collide_group_id: number = 0;
|
||||
|
||||
@property({visible: false})
|
||||
@property({ visible: false })
|
||||
protected collide_scle: number = 1;
|
||||
|
||||
@property({
|
||||
|
@ -134,7 +134,7 @@ export class LQCollide extends Component {
|
|||
@property()
|
||||
protected _size: Size = new Size(100, 100);
|
||||
|
||||
@property({displayName: '位置偏移'})
|
||||
@property({ displayName: '位置偏移' })
|
||||
get offset(): Vec2 {
|
||||
return this._offset;
|
||||
}
|
||||
|
@ -167,7 +167,7 @@ export class LQCollide extends Component {
|
|||
@property()
|
||||
public _offset: Vec2 = new Vec2(0, 0);
|
||||
|
||||
@property({displayName: '自定义字符串'})
|
||||
@property({ displayName: '自定义字符串' })
|
||||
public data_string: string = '';
|
||||
//每个collide的id唯一
|
||||
public collide_id: number = 0;
|
||||
|
@ -221,8 +221,8 @@ export class LQCollide extends Component {
|
|||
this.checkDebugDrawValid();
|
||||
this._debugDrawer.clear();
|
||||
|
||||
let o1 = {key: 'scaleX', value: this.node.scale};
|
||||
let o2 = {key: 'scaleY', value: this.node.scale};
|
||||
let o1 = { key: 'scaleX', value: this.node.scale };
|
||||
let o2 = { key: 'scaleY', value: this.node.scale };
|
||||
LQGameUtil.recursion_node_property(this.node, o1);
|
||||
LQGameUtil.recursion_node_property(this.node, o2);
|
||||
if (o1.value === 0 || o2.value === 0) {
|
||||
|
@ -279,10 +279,10 @@ export class LQCollide extends Component {
|
|||
}
|
||||
|
||||
private updateCollisionArea() {
|
||||
if(this._size.width==0 || this._size.height==0 || MapConroler._instance == undefined){
|
||||
if (this._size.width == 0 || this._size.height == 0 || MapConroler._instance == undefined) {
|
||||
return;
|
||||
}
|
||||
if(MapConroler._instance.node.scale){
|
||||
if (MapConroler._instance.node.scale) {
|
||||
let scaleX = MapConroler._instance.node.scale;
|
||||
let scaleY = MapConroler._instance.node.scale;
|
||||
|
||||
|
@ -297,14 +297,14 @@ export class LQCollide extends Component {
|
|||
case LQCollideShape.Rect:
|
||||
// 矩形碰撞区域尺寸更新
|
||||
// console.log(this.data_string);
|
||||
if (this._size.width !== 10 && this.data_string!="-1") {
|
||||
if (this._size.width !== 10 && this.data_string != "-1") {
|
||||
// if(this._size.width == 105 || this._size.height == 105){}
|
||||
this._size.width = this._size.width * scaleX;
|
||||
this._size.width = this._size.width * scaleX;
|
||||
// console.log("放大倍数",scaleX);
|
||||
}
|
||||
if (this._size.height!== 10 && this.data_string!="-1") {
|
||||
if (this._size.height !== 10 && this.data_string != "-1") {
|
||||
// if(this._size.width == 105 || this._size.height == 105){}
|
||||
this._size.height = this._size.height * scaleY;
|
||||
this._size.height = this._size.height * scaleY;
|
||||
// console.log("放大倍数",scaleY);
|
||||
}
|
||||
// this._size.width = this._size.width * scaleX;
|
||||
|
@ -395,13 +395,13 @@ export class LQCollide extends Component {
|
|||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
|
||||
// }
|
||||
// }
|
||||
|
||||
//@ts-ignore
|
||||
public on_enter(collide: LQCollide) {
|
||||
if(this.disableCollider(collide)){
|
||||
if (this.disableCollider(collide)) {
|
||||
return;
|
||||
}
|
||||
// if (LQCollideConfig.switch_print_log) {
|
||||
|
@ -411,87 +411,103 @@ export class LQCollide extends Component {
|
|||
|
||||
//@ts-ignore
|
||||
public on_exit(collide: LQCollide) {
|
||||
if(this.disableCollider(collide)){
|
||||
if (this.disableCollider(collide)) {
|
||||
return;
|
||||
}
|
||||
if (LQCollideConfig.switch_print_log) {
|
||||
if(this.node.parent.getComponent("Block")){
|
||||
if (this.node.parent.getComponent("Block")) {
|
||||
let block = this.node.parent.getComponent("Block");
|
||||
// if(!block.isTouch){
|
||||
// return;
|
||||
// }
|
||||
block.checkCollision = false;
|
||||
if(this.node.name == "top" ){
|
||||
block.moveUp = true;
|
||||
}
|
||||
if(this.node.name === "down"){
|
||||
block.moveDown = true;
|
||||
}
|
||||
if(this.node.name === "left" ){
|
||||
block.moveLeft = true;
|
||||
}
|
||||
if(this.node.name === "right"){
|
||||
block.moveRight = true;
|
||||
}
|
||||
if (this.node.name == "top") {
|
||||
block.moveUp = true;
|
||||
}
|
||||
if (this.node.name === "down") {
|
||||
block.moveDown = true;
|
||||
}
|
||||
if (this.node.name === "left") {
|
||||
block.moveLeft = true;
|
||||
}
|
||||
if (this.node.name === "right") {
|
||||
block.moveRight = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public on_collide(collide: LQCollide): void {
|
||||
if(this.disableCollider(collide)){
|
||||
if (this.disableCollider(collide)) {
|
||||
return;
|
||||
}
|
||||
if (LQCollideConfig.switch_print_log) {
|
||||
if(this.node.parent.getComponent("Block")){
|
||||
if (this.node.parent.getComponent("Block")) {
|
||||
let block = this.node.parent.getComponent("Block");
|
||||
let jg = false;
|
||||
if(block.isTouch){
|
||||
if (block.isTouch) {
|
||||
block.checkCollision = true;
|
||||
// console.log("碰撞",this.node.name);
|
||||
if(this.node.name == "top" ){
|
||||
if (this.node.name == "top") {
|
||||
// console.log(collide.node.parent.name);
|
||||
block.moveUp = false;
|
||||
if(block.touchPointY > (this.node.parent.y+this.node.parent.height)){
|
||||
if (block.touchPointY > (this.node.parent.y + this.node.parent.height)) {
|
||||
block.moveY = 1;
|
||||
}
|
||||
// console.log("碰到上边缘");
|
||||
}
|
||||
if(this.node.name === "down"){
|
||||
if (this.node.name === "down") {
|
||||
|
||||
block.moveDown = false;
|
||||
if(block.touchPointY < (this.node.parent.y )){
|
||||
if (block.touchPointY < (this.node.parent.y)) {
|
||||
block.moveY = -1;
|
||||
}
|
||||
// console.log("碰到下边缘");
|
||||
}
|
||||
if(this.node.name === "left" ){
|
||||
if (this.node.name === "left") {
|
||||
block.moveLeft = false;
|
||||
if(block.touchPointX < (this.node.parent.x - this.node.parent.width)){
|
||||
if (block.touchPointX < (this.node.parent.x - this.node.parent.width)) {
|
||||
block.moveX = -1;
|
||||
}
|
||||
}
|
||||
if(this.node.name === "right"){
|
||||
if (this.node.name === "right") {
|
||||
block.moveRight = false;
|
||||
if(block.touchPointX > (this.node.parent.x)){
|
||||
if (block.touchPointX > (this.node.parent.x)) {
|
||||
block.moveX = 1;
|
||||
}
|
||||
}
|
||||
|
||||
if (this.node.name.startsWith("tan") && collide.node.name.startsWith("tan")) {
|
||||
// console.log("_____________" + this.node.name);
|
||||
if (this.node.name == "tan_down_left" && collide.node.name == "tan_up_right") {
|
||||
block.Bounce(this.node.name);
|
||||
}
|
||||
else if (this.node.name == "tan_down_right" && collide.node.name == "tan_up_left") {
|
||||
block.Bounce(this.node.name);
|
||||
}
|
||||
else if (this.node.name == "tan_up_left" && collide.node.name == "tan_down_right") {
|
||||
block.Bounce(this.node.name);
|
||||
}
|
||||
else if (this.node.name == "tan_up_right" && collide.node.name == "tan_down_left") {
|
||||
block.Bounce(this.node.name);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public disableCollider(collide: LQCollide){
|
||||
public disableCollider(collide: LQCollide) {
|
||||
let jg = false;
|
||||
if(collide.node && this.node){
|
||||
if(collide.node.parent && this.node.parent){
|
||||
if(collide.node.parent.uuid == this.node.parent.uuid){
|
||||
if (collide.node && this.node) {
|
||||
if (collide.node.parent && this.node.parent) {
|
||||
if (collide.node.parent.uuid == this.node.parent.uuid) {
|
||||
jg = true;
|
||||
}
|
||||
if(this.node.parent.getComponent("Block")){
|
||||
if (this.node.parent.getComponent("Block")) {
|
||||
let block = this.node.parent.getComponent("Block");
|
||||
if(block.type == 1 || block.type == 10 || block.type == 9){
|
||||
if(collide.node.parent == block.block_Info.node){
|
||||
if (block.type == 1 || block.type == 10 || block.type == 9) {
|
||||
if (collide.node.parent == block.block_Info.node) {
|
||||
jg = true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -576,7 +576,7 @@ var GameTool = {
|
|||
cc.fx.GameTool.setUserHealth(recoveredHealth, () => {
|
||||
if (callback) callback();
|
||||
}, true);
|
||||
MiniGameSdk.API.showToast("恢复1点体力值");
|
||||
// MiniGameSdk.API.showToast("恢复1点体力值");
|
||||
console.log(`体力值恢复 ${recoveredHealth} 点,当前体力值: ${cc.fx.GameConfig.GM_INFO.hp}`);
|
||||
// 如果体力增加后仍未满,更新计时
|
||||
if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) {
|
||||
|
|
|
@ -121,7 +121,7 @@ export default class NewClass extends cc.Component {
|
|||
else if (data.code == 2) {
|
||||
this.closeLoad();
|
||||
console.log("轮训超时");
|
||||
MiniGameSdk.API.showToast("订单已关闭");
|
||||
// MiniGameSdk.API.showToast("订单已关闭");
|
||||
const dataFail = {
|
||||
outTradeNo: iosOutTradeNo,
|
||||
price: this.iosPrice,
|
||||
|
|
|
@ -31,19 +31,31 @@
|
|||
},
|
||||
{
|
||||
"__id__": 17
|
||||
},
|
||||
{
|
||||
"__id__": 21
|
||||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 21
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 22
|
||||
"__id__": 38
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 23
|
||||
"__id__": 39
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -769,6 +781,578 @@
|
|||
"fileId": "a8hzz+oPFG0JV6HhoJ9yIW",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 22
|
||||
},
|
||||
{
|
||||
"__id__": 23
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 24
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.54,
|
||||
112.441,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "98d5+x26ZEALO5hcRKGrUE",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 26
|
||||
},
|
||||
{
|
||||
"__id__": 27
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 28
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.373,
|
||||
112.731,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "e2fqhyOwxPypNUKAFl9lVV",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.484,
|
||||
7.519,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "8ddmQMl6RNdoQ7MY7X781C",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.486,
|
||||
7.483,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "32rhoGLuBDmp+cb5MtLx9y",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -31,19 +31,31 @@
|
|||
},
|
||||
{
|
||||
"__id__": 17
|
||||
},
|
||||
{
|
||||
"__id__": 21
|
||||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 21
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 22
|
||||
"__id__": 38
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 23
|
||||
"__id__": 39
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -769,6 +781,578 @@
|
|||
"fileId": "e9YUZAmK9HCJEc5eGwDOl7",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 22
|
||||
},
|
||||
{
|
||||
"__id__": 23
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 24
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.598,
|
||||
112.663,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "0dBLH92JBBkL/CeBEk1IB5",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 26
|
||||
},
|
||||
{
|
||||
"__id__": 27
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 28
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.432,
|
||||
112.567,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "3cSC6ez01IB74ebZJx0jnB",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.506,
|
||||
7.467,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "4cORlEludJQ5XpAVgqn8ze",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.471,
|
||||
7.208,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "76A1r+rztHALFVunhxUSui",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "3fqtakn1xAU6rne5NKW2tW",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
112.544,
|
||||
352.572,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "f5omS2TB1E0bT+EcRXXLdA",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-111.987,
|
||||
352.64,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "2d+n9CkOBKMIXpbtSr/Wzb",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.451,
|
||||
7.674,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "59hRdJ0/pBh46qTXqqEUIU",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.257,
|
||||
7.603,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "43/TZjqLtIPZTRQ17ZDcvE",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
112.544,
|
||||
247.387,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "a7b0SpArxPTqg4ajK/lYLw",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "fdL42sgylIS642V/6or5nB",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
232.475,
|
||||
232.584,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "95/UvSsOpMbqFrB86ZP1Zr",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.033,
|
||||
232.484,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "8dQXiK/glDRrtNGn192RKn",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.646,
|
||||
7.528,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "881LwJ/iFLhL8KKi8VuDuV",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.175,
|
||||
7.58,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "95tMFfxzJEiZ3/D0Lfb+48",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
232.458,
|
||||
128.507,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "f9jG43Cr9LuotTAqGhAWrs",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "ddwFSF+CBD+ogHMAejLDXf",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.443,
|
||||
352.463,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "dcl3mcUmhOAZ/OVX9MO4qJ",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.033,
|
||||
351.218,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "204BFP+7xFpoLdyou/N3Ey",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-231.941,
|
||||
112.29,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "66tfBJgzBOd7Lu8d17v6Jr",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.646,
|
||||
7.61,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "acmfF12p1M16FjBUhrTyJd",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.38,
|
||||
7.631,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "05uQ19pDhEXaZ8VP2xngSP",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "dbLlIrQB1OZbep1IZXAakQ",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.525,
|
||||
112.444,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "ec1g8O069Ig4ryNAsziANc",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-247.977,
|
||||
232.453,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "c7lSMpgdFI1pF/syJwJ0FW",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-352.339,
|
||||
232.563,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "6fyM1Dm1ZG/7l11vK4+qYn",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.234,
|
||||
7.363,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "bb2343KUhJerAjpMHrUGAe",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-352.491,
|
||||
7.471,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "feka9aMslH2r6J9UKCJf7Q",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -40,19 +40,37 @@
|
|||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
},
|
||||
{
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 53
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 33
|
||||
"__id__": 57
|
||||
},
|
||||
{
|
||||
"__id__": 34
|
||||
"__id__": 58
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 35
|
||||
"__id__": 59
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1207,6 +1225,864 @@
|
|||
"fileId": "fbPri7frJJJpf0whW3EHbz",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
112.652,
|
||||
232.496,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "ffj7leAsFDpaHA+P+j+6Vf",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.348,
|
||||
232.579,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "60zDwidJVCK6JCpgfVIBmP",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-8.03,
|
||||
7.829,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "b7dtbBVVdB/JW26YidOjp/",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
112.545,
|
||||
127.335,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "61z9R+p+1O2I+D8NmJrW5p",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 50
|
||||
},
|
||||
{
|
||||
"__id__": 51
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 52
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.035,
|
||||
127.529,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 49
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 49
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "2aK1KRiA5C0YuYPhsgEC4a",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 54
|
||||
},
|
||||
{
|
||||
"__id__": 55
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 56
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.116,
|
||||
7.612,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 53
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 53
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "7bYFAiUYNDZISxEvZFg7SW",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -40,19 +40,37 @@
|
|||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
},
|
||||
{
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 53
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 33
|
||||
"__id__": 57
|
||||
},
|
||||
{
|
||||
"__id__": 34
|
||||
"__id__": 58
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 35
|
||||
"__id__": 59
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1207,6 +1225,864 @@
|
|||
"fileId": "5fZrHZLutOZ4PQRc26CEJ6",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-127.744,
|
||||
232.372,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "63fl/QuCJDJ7rgl6Ir5RzC",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.722,
|
||||
112.423,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "c4IviJ0xtE9qndw3W7yxuL",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-231.932,
|
||||
232.174,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "d2n1Q6fcpBnrzHTZ47fJrF",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-351.765,
|
||||
112.005,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "f8m3SqKxlL56fUv+AOB6KH",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 50
|
||||
},
|
||||
{
|
||||
"__id__": 51
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 52
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-8.086,
|
||||
8.097,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 49
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 49
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "5dN0XbwBZJ4r+rvy9IM8/i",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 54
|
||||
},
|
||||
{
|
||||
"__id__": 55
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 56
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-352.14,
|
||||
7.661,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 53
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 53
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "beXOqRhSRM6I1RWE5Mu+5B",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -40,19 +40,37 @@
|
|||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
},
|
||||
{
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 53
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 33
|
||||
"__id__": 57
|
||||
},
|
||||
{
|
||||
"__id__": 34
|
||||
"__id__": 58
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 35
|
||||
"__id__": 59
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1207,6 +1225,864 @@
|
|||
"fileId": "6avWrBeBhJF4CJX0eBnYvR",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.795,
|
||||
352.381,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "271tr7/6ZHc5jLk1T9NDj4",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
112.427,
|
||||
232.055,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "fa9Pig7WBAxYzTO1AuIFjj",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-111.817,
|
||||
352.201,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "8fqG5UqWNE2I0zkrSxhuYc",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.568,
|
||||
7.496,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "c9z7uMl99CeIoZzlLii0nH",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 50
|
||||
},
|
||||
{
|
||||
"__id__": 51
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 52
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
112.301,
|
||||
127.619,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 49
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 49
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "57f/Zj3tRILIqulr99YmWD",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 54
|
||||
},
|
||||
{
|
||||
"__id__": 55
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 56
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.133,
|
||||
7.819,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 53
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 53
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "9fHgUHrgRKIo3ja0Dcp73z",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -40,19 +40,37 @@
|
|||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
},
|
||||
{
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 53
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 33
|
||||
"__id__": 57
|
||||
},
|
||||
{
|
||||
"__id__": 34
|
||||
"__id__": 58
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 35
|
||||
"__id__": 59
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1207,6 +1225,864 @@
|
|||
"fileId": "bd0WTL29JAP725qjY2w0oW",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-10.104,
|
||||
349.66,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "71+Jdk2sFMT5+/3t+SVdwt",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-109.755,
|
||||
349.644,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "7fdediPeZAA44gcfsdbpGf",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-229.698,
|
||||
229.661,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "b2y2YmGTNIFbpra4scAS5E",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-10.203,
|
||||
10.002,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "82lIlJErFDoKStXJiNwf4f",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 50
|
||||
},
|
||||
{
|
||||
"__id__": 51
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 52
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-109.91,
|
||||
10.465,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 49
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 49
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "e5LcYxa+hN261n3QymuX3/",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 54
|
||||
},
|
||||
{
|
||||
"__id__": 55
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 56
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-229.709,
|
||||
130.3,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 53
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 53
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "dewslijUBAPrhC/5lGI1U3",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "a132v2HgNNQajhVXLzJP7J",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.63,
|
||||
232.279,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "5akoNN7V9K/a8b/Vmm7/tZ",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-111.545,
|
||||
232.093,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "27pF51InhCX7VtilLlUQW+",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-231.859,
|
||||
112.134,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "53jEIXKgBLlJK4Q50v2pJe",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-8.086,
|
||||
7.885,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "70EYku6kVNX4PHgdio9X6o",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.15,
|
||||
7.744,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "44HZz6Kx1PgbT8tslx+i0Q",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -31,19 +31,31 @@
|
|||
},
|
||||
{
|
||||
"__id__": 17
|
||||
},
|
||||
{
|
||||
"__id__": 21
|
||||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 21
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 22
|
||||
"__id__": 38
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 23
|
||||
"__id__": 39
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -769,6 +781,578 @@
|
|||
"fileId": "c8rm4s589EYZ/Tji7rgueB",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 22
|
||||
},
|
||||
{
|
||||
"__id__": 23
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 24
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.569,
|
||||
232.32,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "ae8jB/IfFD6Z0lTuhVAueo",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 26
|
||||
},
|
||||
{
|
||||
"__id__": 27
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 28
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.416,
|
||||
232.465,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "947ah/py1Pb7CmHg9QbUvh",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.253,
|
||||
7.435,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "b6/GI1+KtJqZ6o3tXjmVOn",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.816,
|
||||
7.459,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "17TnsvytdJjpeUAgLq3rQ9",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "5fsC7n00pOOqIJYOwraZfh",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.881,
|
||||
112.057,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "3dwdra2gJN8bbScLpB98SQ",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-127.833,
|
||||
232.185,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "f9jKFsI3dCJ5+tKxOMTkzO",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-231.592,
|
||||
231.763,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "612Qt/mJ1MNoXAF6Ej+GIP",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-8.141,
|
||||
7.858,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "f65gXYrB1F/4qivf4X8JNj",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-231.985,
|
||||
8.156,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "26+5Gsq/NAAqqGSEfYdWO5",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "40vo4N485NVJDZyY9X5IAn",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
112.444,
|
||||
232.566,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "45CpnLLOFPqrLsAEIKNn9R",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-111.696,
|
||||
232.257,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "a5OPszgAVMr74nhdM9BOi9",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-8.468,
|
||||
8.139,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "5dZ5UITOpHJ7b5vI4t8UYU",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
111.713,
|
||||
128.361,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "08djWOZyRBn68hh/uwA2id",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-111.588,
|
||||
7.937,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "4a3MK+/BdA2bKwseY1KHaq",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "c6BQI2DxROg5NJgUGDXZxH",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.867,
|
||||
232.468,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "05AgXTlGVKiLccZqpa4b+M",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.058,
|
||||
232.125,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "a8BEFVMLZCZa/uL7RpJvwl",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.908,
|
||||
7.885,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "1cCLv8Vc9Me4TY10wmiu+i",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-111.892,
|
||||
7.772,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "c5mVULkF1F2aYP9a0NmBtA",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.289,
|
||||
127.774,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "34AeN5wHBNy7zUvW1VmKXx",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -31,19 +31,31 @@
|
|||
},
|
||||
{
|
||||
"__id__": 17
|
||||
},
|
||||
{
|
||||
"__id__": 21
|
||||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 21
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 22
|
||||
"__id__": 38
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 23
|
||||
"__id__": 39
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -769,6 +781,578 @@
|
|||
"fileId": "87m7vzA7pAgYHkEJ/xO+tL",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 22
|
||||
},
|
||||
{
|
||||
"__id__": 23
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 24
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.33,
|
||||
112.737,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "0407SW9cpH8a4Jpv0jirWt",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 26
|
||||
},
|
||||
{
|
||||
"__id__": 27
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 28
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-352.214,
|
||||
112.61,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "b8sWf/mnJGR6okh+UA+R0y",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.319,
|
||||
7.188,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "29G/Zw4mhLd5pIzZrXfe50",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-352.837,
|
||||
7.235,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "2561Z6cvhLQbS31uh5vuF5",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -31,19 +31,31 @@
|
|||
},
|
||||
{
|
||||
"__id__": 17
|
||||
},
|
||||
{
|
||||
"__id__": 21
|
||||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 21
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 22
|
||||
"__id__": 38
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 23
|
||||
"__id__": 39
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -769,6 +781,578 @@
|
|||
"fileId": "38Hw5xkP5D1pz0l3Ht2pPt",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 22
|
||||
},
|
||||
{
|
||||
"__id__": 23
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 24
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.338,
|
||||
352.526,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "3dmOKGEDNG/JNIc7fDpAhY",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 26
|
||||
},
|
||||
{
|
||||
"__id__": 27
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 28
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.641,
|
||||
352.705,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "02aaedcHZBApkJIHBTFtbf",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.318,
|
||||
7.499,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "6dhTX7nwtIy6BLn6UhgSlG",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.648,
|
||||
7.299,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "21YpX0Yx1H9bNt8XfVjklK",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -31,19 +31,31 @@
|
|||
},
|
||||
{
|
||||
"__id__": 17
|
||||
},
|
||||
{
|
||||
"__id__": 21
|
||||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 21
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 22
|
||||
"__id__": 38
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 23
|
||||
"__id__": 39
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -769,6 +781,578 @@
|
|||
"fileId": "b175+4xCZKMooNbUHBXnFm",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 22
|
||||
},
|
||||
{
|
||||
"__id__": 23
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 24
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-9.209,
|
||||
231.315,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 21
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 4,
|
||||
"height": 4
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "3aR4ohmlZLkpYATZs08yA/",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 26
|
||||
},
|
||||
{
|
||||
"__id__": 27
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 28
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-231.338,
|
||||
231.318,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 25
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 4,
|
||||
"height": 4
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "77LvmvcDFLwYg5qsEDuc21",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-9.175,
|
||||
8.066,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 4,
|
||||
"height": 4
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "3fgbBjoRBGD4taY/IAYCdZ",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-231.305,
|
||||
8.212,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 4,
|
||||
"height": 4
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "83/iHf1ldMM6h6p9l8+JyS",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "0b9fb+hlNCYLq8891atJEx",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.24,
|
||||
352.767,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "c8GaVWd4pANbVjeSHCAONe",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.424,
|
||||
352.591,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "722mOsrBFMmrR4ToeR4JbU",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.253,
|
||||
7.113,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "f8EUzmohZIibXC/REuXJjg",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.537,
|
||||
7.521,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "4d37njUgFCSbO8/3Hu1bbm",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.549,
|
||||
247.263,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "8dk+1KsU5McIqomwarT7/9",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -125,8 +140,8 @@
|
|||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 244,
|
||||
"height": 371
|
||||
"width": 364,
|
||||
"height": 252
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
|
@ -245,8 +260,8 @@
|
|||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232,
|
||||
131,
|
||||
-235.117,
|
||||
129.242,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
|
@ -297,7 +312,7 @@
|
|||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 226,
|
||||
"width": 230,
|
||||
"height": 8
|
||||
},
|
||||
"_polygon_points": [
|
||||
|
@ -532,7 +547,7 @@
|
|||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-352,
|
||||
180,
|
||||
181.436,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
|
@ -584,7 +599,7 @@
|
|||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 10,
|
||||
"height": 96
|
||||
"height": 94
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "74zQ0qQopK7Y7INKyJuunv",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.156,
|
||||
232.617,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "40KuwEPiNKQJ3clmFGjYl/",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-352.151,
|
||||
232.492,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "45obmGwllIRIq7lP3OAKAF",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.282,
|
||||
7.359,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "2dSlT7vWtKnbjqKVkBkuJk",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-113.444,
|
||||
7.274,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "f9QTKzRhFH96TTBkroOlTI",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-352.595,
|
||||
129.548,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "f7d4CLgRJFHZHnS2ZYdXTE",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "e3+OFY+qJCmY4rdm8S6nYM",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-127.721,
|
||||
351.341,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "19jiWgb+FLnoRGvlVZXfRf",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.51,
|
||||
112.335,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "acxrHtp85Gz7JHxxklGDN3",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.412,
|
||||
352.58,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "0ahBNWwbRJcJtHJi0XtCBr",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.342,
|
||||
7.459,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "39MFOdP7ZLIq94sw7x+/MX",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-232.328,
|
||||
7.627,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "bcqFj5faBHQLL6kAMbsEJj",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
|
@ -37,19 +37,34 @@
|
|||
},
|
||||
{
|
||||
"__id__": 25
|
||||
},
|
||||
{
|
||||
"__id__": 29
|
||||
},
|
||||
{
|
||||
"__id__": 33
|
||||
},
|
||||
{
|
||||
"__id__": 37
|
||||
},
|
||||
{
|
||||
"__id__": 41
|
||||
},
|
||||
{
|
||||
"__id__": 45
|
||||
}
|
||||
],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 29
|
||||
"__id__": 49
|
||||
},
|
||||
{
|
||||
"__id__": 30
|
||||
"__id__": 50
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 31
|
||||
"__id__": 51
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
|
@ -1061,6 +1076,721 @@
|
|||
"fileId": "0cOGORP15AJbWSassqqmar",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 30
|
||||
},
|
||||
{
|
||||
"__id__": 31
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 32
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.345,
|
||||
232.672,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 29
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "f6PaAcoYBLkpoJiQ5YUzgM",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 34
|
||||
},
|
||||
{
|
||||
"__id__": 35
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 36
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-112.179,
|
||||
232.286,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 33
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "1fFK/5S7JE2Za4sRX2ZLbX",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_up_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 38
|
||||
},
|
||||
{
|
||||
"__id__": 39
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 40
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-352.242,
|
||||
112.452,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 37
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "7duR52Rq9J6oMaXfOz/3Ig",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_right",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 42
|
||||
},
|
||||
{
|
||||
"__id__": 43
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 44
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-7.663,
|
||||
7.356,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 41
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "41ggI57DlLqanxdRTTnofb",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "tan_down_left",
|
||||
"_objFlags": 0,
|
||||
"_parent": {
|
||||
"__id__": 1
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 46
|
||||
},
|
||||
{
|
||||
"__id__": 47
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 48
|
||||
},
|
||||
"_opacity": 255,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 5,
|
||||
"height": 5
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_trs": {
|
||||
"__type__": "TypedArray",
|
||||
"ctor": "Float64Array",
|
||||
"array": [
|
||||
-352.615,
|
||||
7.271,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
]
|
||||
},
|
||||
"_eulerAngles": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_skewX": 0,
|
||||
"_skewY": 0,
|
||||
"_is3DNode": false,
|
||||
"_groupIndex": 0,
|
||||
"groupIndex": 0,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "c22a3wcU/tBdJ/qjn/Q6uuA",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"auto_update_point": false,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "d2addiRqXVKQ4YEp6sK5d6R",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"node": {
|
||||
"__id__": 45
|
||||
},
|
||||
"_enabled": true,
|
||||
"_draw_collide": false,
|
||||
"can_move": true,
|
||||
"_collide_shape": 1,
|
||||
"collide_group_id": 0,
|
||||
"collide_scle": 1,
|
||||
"_radius": 50,
|
||||
"_size": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 7,
|
||||
"height": 7
|
||||
},
|
||||
"_polygon_points": [
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 45,
|
||||
"y": -45
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 60,
|
||||
"y": 40
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 70
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Vec2",
|
||||
"x": -60,
|
||||
"y": 40
|
||||
}
|
||||
],
|
||||
"_offset": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"data_string": "5",
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "93tSkDJ6RELpdh4Bf4ApXE",
|
||||
"sync": false
|
||||
},
|
||||
{
|
||||
"__type__": "c58deN2u1NGZL8nJwvnu1PR",
|
||||
"_name": "",
|
||||
|
|
Loading…
Reference in New Issue
Block a user