修改埋点
This commit is contained in:
parent
f045013d0c
commit
dc054f85dc
|
@ -31,6 +31,7 @@ export default class GameData extends cc.Component {
|
||||||
round:number; //回合数
|
round:number; //回合数
|
||||||
levelMax:number, //最高层数
|
levelMax:number, //最高层数
|
||||||
difficultyMax:number //最高难度系数
|
difficultyMax:number //最高难度系数
|
||||||
|
isAFK:boolean //是否挂机 第一层连续死3次且没跳
|
||||||
};
|
};
|
||||||
LEVEL_INFO: { //难度控制
|
LEVEL_INFO: { //难度控制
|
||||||
speed: number; //速度加成基础
|
speed: number; //速度加成基础
|
||||||
|
@ -110,7 +111,9 @@ export default class GameData extends cc.Component {
|
||||||
difficultyMax:1, //最高难度系数
|
difficultyMax:1, //最高难度系数
|
||||||
score:0, //总分
|
score:0, //总分
|
||||||
success:true, //是否成功
|
success:true, //是否成功
|
||||||
probation:true //试用期
|
probation:true, //试用期
|
||||||
|
afkCount:0, //第一层不跳死的次数
|
||||||
|
isAFK:false //是否挂机
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -133,6 +136,7 @@ export default class GameData extends cc.Component {
|
||||||
fakeSpeed:0, //假平台移动速度
|
fakeSpeed:0, //假平台移动速度
|
||||||
speed:0, //真平台移动速度
|
speed:0, //真平台移动速度
|
||||||
round:0, //回合数
|
round:0, //回合数
|
||||||
|
isAFK:false //是否挂机
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -674,6 +674,8 @@ export default class GameManager extends cc.Component {
|
||||||
GameData._instance.CLICK_DATA.timer = this.countTime;
|
GameData._instance.CLICK_DATA.timer = this.countTime;
|
||||||
GameData._instance.CLICK_DATA.level = this.round;
|
GameData._instance.CLICK_DATA.level = this.round;
|
||||||
GameData._instance.CLICK_DATA.round = this.level;
|
GameData._instance.CLICK_DATA.round = this.level;
|
||||||
|
GameData._instance.CLICK_DATA.isAFK = GameData._instance.GM_INFO.isAFK;
|
||||||
|
|
||||||
//CLICK_DATA 数据处理完毕后调用上传接口 上传接口内CLICK_DATA不做改变
|
//CLICK_DATA 数据处理完毕后调用上传接口 上传接口内CLICK_DATA不做改变
|
||||||
GameTool.setGameData();
|
GameTool.setGameData();
|
||||||
}
|
}
|
||||||
|
|
|
@ -299,6 +299,7 @@ export default class NewClass extends cc.Component {
|
||||||
this.block = other.node;
|
this.block = other.node;
|
||||||
if(this.block.name != "block13"){
|
if(this.block.name != "block13"){
|
||||||
this.block.getComponent("Block").setScore(number);
|
this.block.getComponent("Block").setScore(number);
|
||||||
|
GameData._instance.GM_INFO.afkCount = 0;
|
||||||
Notification.emit("setData",null);
|
Notification.emit("setData",null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -342,6 +343,15 @@ export default class NewClass extends cc.Component {
|
||||||
GameData._instance.CLICK_DATA.combo = 0;
|
GameData._instance.CLICK_DATA.combo = 0;
|
||||||
GameData._instance.CLICK_DATA.accuracy = 0;
|
GameData._instance.CLICK_DATA.accuracy = 0;
|
||||||
GameData._instance.CLICK_DATA.percent = -1;
|
GameData._instance.CLICK_DATA.percent = -1;
|
||||||
|
if(GameData._instance.CLICK_DATA.jumps == 0 && GameManager._instance.round == 1){
|
||||||
|
GameData._instance.GM_INFO.afkCount += 1;
|
||||||
|
if(GameData._instance.GM_INFO.afkCount == 3){
|
||||||
|
GameData._instance.GM_INFO.isAFK = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
GameData._instance.GM_INFO.afkCount = 0;
|
||||||
|
}
|
||||||
Notification.emit("setData",null);
|
Notification.emit("setData",null);
|
||||||
this.double = false;
|
this.double = false;
|
||||||
GameData._instance.LEVEL_INFO.doubleSuccess = 3;
|
GameData._instance.LEVEL_INFO.doubleSuccess = 3;
|
||||||
|
|
BIN
build/FlyUp.zip
BIN
build/FlyUp.zip
Binary file not shown.
File diff suppressed because one or more lines are too long
1
build/FlyUp/assets/main/index.7ff7c.js
Normal file
1
build/FlyUp/assets/main/index.7ff7c.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -139,9 +139,9 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<canvas id="GameCanvas" oncontextmenu="event.preventDefault()" tabindex="0"></canvas>
|
<canvas id="GameCanvas" oncontextmenu="event.preventDefault()" tabindex="0"></canvas>
|
||||||
<script src="src/settings.d71ee.js" charset="utf-8"></script>
|
<script src="src/settings.9f896.js" charset="utf-8"></script>
|
||||||
|
|
||||||
<script src="main.60ef3.js" charset="utf-8"></script>
|
<script src="main.def4d.js" charset="utf-8"></script>
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
@ -225,7 +225,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
loadScript(debug ? 'cocos2d-js.js' : 'cocos2d-js-min.6e822.js', function () {
|
loadScript(debug ? 'cocos2d-js.js' : 'cocos2d-js-min.07b7e.js', function () {
|
||||||
if (CC_PHYSICS_BUILTIN || CC_PHYSICS_CANNON) {
|
if (CC_PHYSICS_BUILTIN || CC_PHYSICS_CANNON) {
|
||||||
loadScript(debug ? 'physics.js' : 'physics-min.js', window.boot);
|
loadScript(debug ? 'physics.js' : 'physics-min.js', window.boot);
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,7 +118,7 @@ window.boot = function () {
|
||||||
if (window.jsb) {
|
if (window.jsb) {
|
||||||
var isRuntime = (typeof loadRuntime === 'function');
|
var isRuntime = (typeof loadRuntime === 'function');
|
||||||
if (isRuntime) {
|
if (isRuntime) {
|
||||||
require('src/settings.d71ee.js');
|
require('src/settings.9f896.js');
|
||||||
require('src/cocos2d-runtime.js');
|
require('src/cocos2d-runtime.js');
|
||||||
if (CC_PHYSICS_BUILTIN || CC_PHYSICS_CANNON) {
|
if (CC_PHYSICS_BUILTIN || CC_PHYSICS_CANNON) {
|
||||||
require('src/physics.js');
|
require('src/physics.js');
|
||||||
|
@ -126,7 +126,7 @@ if (window.jsb) {
|
||||||
require('jsb-adapter/engine/index.js');
|
require('jsb-adapter/engine/index.js');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
require('src/settings.d71ee.js');
|
require('src/settings.9f896.js');
|
||||||
require('src/cocos2d-jsb.js');
|
require('src/cocos2d-jsb.js');
|
||||||
if (CC_PHYSICS_BUILTIN || CC_PHYSICS_CANNON) {
|
if (CC_PHYSICS_BUILTIN || CC_PHYSICS_CANNON) {
|
||||||
require('src/physics.js');
|
require('src/physics.js');
|
|
@ -1 +1 @@
|
||||||
window._CCSettings={platform:"web-mobile",groupList:["default"],collisionMatrix:[[true]],hasResourcesBundle:true,hasStartSceneBundle:false,remoteBundles:[],subpackages:[],launchScene:"db://assets/Scene/LoadScene.fire",orientation:"portrait",jsList:[],bundleVers:{internal:"d0832",resources:"8a1f5",main:"3eb95"}};
|
window._CCSettings={platform:"web-mobile",groupList:["default"],collisionMatrix:[[true]],hasResourcesBundle:true,hasStartSceneBundle:false,remoteBundles:[],subpackages:[],launchScene:"db://assets/Scene/LoadScene.fire",orientation:"portrait",jsList:[],bundleVers:{internal:"d0832",resources:"8a1f5",main:"7ff7c"}};
|
|
@ -304,6 +304,7 @@ var NewClass = /** @class */ (function (_super) {
|
||||||
this.block = other.node;
|
this.block = other.node;
|
||||||
if (this.block.name != "block13") {
|
if (this.block.name != "block13") {
|
||||||
this.block.getComponent("Block").setScore(number);
|
this.block.getComponent("Block").setScore(number);
|
||||||
|
GameData_1.default._instance.GM_INFO.afkCount = 0;
|
||||||
Notification_1.Notification.emit("setData", null);
|
Notification_1.Notification.emit("setData", null);
|
||||||
}
|
}
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
|
@ -342,6 +343,15 @@ var NewClass = /** @class */ (function (_super) {
|
||||||
GameData_1.default._instance.CLICK_DATA.combo = 0;
|
GameData_1.default._instance.CLICK_DATA.combo = 0;
|
||||||
GameData_1.default._instance.CLICK_DATA.accuracy = 0;
|
GameData_1.default._instance.CLICK_DATA.accuracy = 0;
|
||||||
GameData_1.default._instance.CLICK_DATA.percent = -1;
|
GameData_1.default._instance.CLICK_DATA.percent = -1;
|
||||||
|
if (GameData_1.default._instance.CLICK_DATA.jumps == 0 && GameManager_1.default._instance.round == 1) {
|
||||||
|
GameData_1.default._instance.GM_INFO.afkCount += 1;
|
||||||
|
if (GameData_1.default._instance.GM_INFO.afkCount == 3) {
|
||||||
|
GameData_1.default._instance.GM_INFO.isAFK = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
GameData_1.default._instance.GM_INFO.afkCount = 0;
|
||||||
|
}
|
||||||
Notification_1.Notification.emit("setData", null);
|
Notification_1.Notification.emit("setData", null);
|
||||||
this.double = false;
|
this.double = false;
|
||||||
GameData_1.default._instance.LEVEL_INFO.doubleSuccess = 3;
|
GameData_1.default._instance.LEVEL_INFO.doubleSuccess = 3;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -645,6 +645,7 @@ var GameManager = /** @class */ (function (_super) {
|
||||||
GameData_1.default._instance.CLICK_DATA.timer = this.countTime;
|
GameData_1.default._instance.CLICK_DATA.timer = this.countTime;
|
||||||
GameData_1.default._instance.CLICK_DATA.level = this.round;
|
GameData_1.default._instance.CLICK_DATA.level = this.round;
|
||||||
GameData_1.default._instance.CLICK_DATA.round = this.level;
|
GameData_1.default._instance.CLICK_DATA.round = this.level;
|
||||||
|
GameData_1.default._instance.CLICK_DATA.isAFK = GameData_1.default._instance.GM_INFO.isAFK;
|
||||||
//CLICK_DATA 数据处理完毕后调用上传接口 上传接口内CLICK_DATA不做改变
|
//CLICK_DATA 数据处理完毕后调用上传接口 上传接口内CLICK_DATA不做改变
|
||||||
GameTool_1.GameTool.setGameData();
|
GameTool_1.GameTool.setGameData();
|
||||||
};
|
};
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -75,7 +75,9 @@ var GameData = /** @class */ (function (_super) {
|
||||||
difficultyMax: 1,
|
difficultyMax: 1,
|
||||||
score: 0,
|
score: 0,
|
||||||
success: true,
|
success: true,
|
||||||
probation: true //试用期
|
probation: true,
|
||||||
|
afkCount: 0,
|
||||||
|
isAFK: false //是否挂机
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
GameData.prototype.CLICK_init = function () {
|
GameData.prototype.CLICK_init = function () {
|
||||||
|
@ -97,6 +99,7 @@ var GameData = /** @class */ (function (_super) {
|
||||||
fakeSpeed: 0,
|
fakeSpeed: 0,
|
||||||
speed: 0,
|
speed: 0,
|
||||||
round: 0,
|
round: 0,
|
||||||
|
isAFK: false //是否挂机
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
GameData.prototype.LEVEL_init = function () {
|
GameData.prototype.LEVEL_init = function () {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -314,14 +314,9 @@
|
||||||
"meta": 1718709307963,
|
"meta": 1718709307963,
|
||||||
"relativePath": "Script\\Block.ts"
|
"relativePath": "Script\\Block.ts"
|
||||||
},
|
},
|
||||||
"7fd749ea-5b80-4237-a685-6a53799e6c8b": {
|
|
||||||
"asset": 1719199026120,
|
|
||||||
"meta": 1719814733959,
|
|
||||||
"relativePath": "Script\\Player.ts"
|
|
||||||
},
|
|
||||||
"de4a2193-73c2-43cd-8359-363f654e759f": {
|
"de4a2193-73c2-43cd-8359-363f654e759f": {
|
||||||
"asset": 1722418179015,
|
"asset": 1723022485243,
|
||||||
"meta": 1722418179019,
|
"meta": 1723022485250,
|
||||||
"relativePath": "Scene\\LoadScene.fire"
|
"relativePath": "Scene\\LoadScene.fire"
|
||||||
},
|
},
|
||||||
"cbbdc0fe-70fe-4713-a29c-72e3ec7e2511": {
|
"cbbdc0fe-70fe-4713-a29c-72e3ec7e2511": {
|
||||||
|
@ -336,487 +331,487 @@
|
||||||
},
|
},
|
||||||
"9836134e-b892-4283-b6b2-78b5acf3ed45": {
|
"9836134e-b892-4283-b6b2-78b5acf3ed45": {
|
||||||
"asset": 1714966328642,
|
"asset": 1714966328642,
|
||||||
"meta": 1722566756063,
|
"meta": 1723022266410,
|
||||||
"relativePath": "effects"
|
"relativePath": "effects"
|
||||||
},
|
},
|
||||||
"abc2cb62-7852-4525-a90d-d474487b88f2": {
|
"abc2cb62-7852-4525-a90d-d474487b88f2": {
|
||||||
"asset": 1714966328642,
|
"asset": 1714966328642,
|
||||||
"meta": 1722566756192,
|
"meta": 1723022266580,
|
||||||
"relativePath": "effects\\builtin-phong.effect"
|
"relativePath": "effects\\builtin-phong.effect"
|
||||||
},
|
},
|
||||||
"e2f00085-c597-422d-9759-52c360279106": {
|
"e2f00085-c597-422d-9759-52c360279106": {
|
||||||
"asset": 1714966328642,
|
"asset": 1714966328642,
|
||||||
"meta": 1722566756249,
|
"meta": 1723022266645,
|
||||||
"relativePath": "effects\\builtin-toon.effect"
|
"relativePath": "effects\\builtin-toon.effect"
|
||||||
},
|
},
|
||||||
"430eccbf-bf2c-4e6e-8c0c-884bbb487f32": {
|
"430eccbf-bf2c-4e6e-8c0c-884bbb487f32": {
|
||||||
"asset": 1714966328642,
|
"asset": 1714966328642,
|
||||||
"meta": 1722566756264,
|
"meta": 1723022266664,
|
||||||
"relativePath": "effects\\__builtin-editor-gizmo-line.effect"
|
"relativePath": "effects\\__builtin-editor-gizmo-line.effect"
|
||||||
},
|
},
|
||||||
"6c5cf6e1-b044-4eac-9431-835644d57381": {
|
"6c5cf6e1-b044-4eac-9431-835644d57381": {
|
||||||
"asset": 1714966328642,
|
"asset": 1714966328642,
|
||||||
"meta": 1722566756272,
|
"meta": 1723022266675,
|
||||||
"relativePath": "effects\\__builtin-editor-gizmo-unlit.effect"
|
"relativePath": "effects\\__builtin-editor-gizmo-unlit.effect"
|
||||||
},
|
},
|
||||||
"115286d1-2e10-49ee-aab4-341583f607e8": {
|
"115286d1-2e10-49ee-aab4-341583f607e8": {
|
||||||
"asset": 1714966328642,
|
"asset": 1714966328642,
|
||||||
"meta": 1722566756304,
|
"meta": 1723022266712,
|
||||||
"relativePath": "effects\\__builtin-editor-gizmo.effect"
|
"relativePath": "effects\\__builtin-editor-gizmo.effect"
|
||||||
},
|
},
|
||||||
"f8e6b000-5643-4b86-9080-aa680ce1f599": {
|
"f8e6b000-5643-4b86-9080-aa680ce1f599": {
|
||||||
"asset": 1714966328706,
|
"asset": 1714966328706,
|
||||||
"meta": 1722566756063,
|
"meta": 1723022266411,
|
||||||
"relativePath": "image"
|
"relativePath": "image"
|
||||||
},
|
},
|
||||||
"5c3eedba-6c41-4c0c-9ba7-d91f813cbd1c": {
|
"5c3eedba-6c41-4c0c-9ba7-d91f813cbd1c": {
|
||||||
"asset": 1714966328721,
|
"asset": 1714966328721,
|
||||||
"meta": 1722566756064,
|
"meta": 1723022266413,
|
||||||
"relativePath": "materials"
|
"relativePath": "materials"
|
||||||
},
|
},
|
||||||
"fc09f9bd-2cce-4605-b630-8145ef809ed6": {
|
"fc09f9bd-2cce-4605-b630-8145ef809ed6": {
|
||||||
"asset": 1714966328721,
|
"asset": 1714966328721,
|
||||||
"meta": 1722566756065,
|
"meta": 1723022266414,
|
||||||
"relativePath": "misc"
|
"relativePath": "misc"
|
||||||
},
|
},
|
||||||
"d81ec8ad-247c-4e62-aa3c-d35c4193c7af": {
|
"d81ec8ad-247c-4e62-aa3c-d35c4193c7af": {
|
||||||
"asset": 1714966328673,
|
"asset": 1714966328673,
|
||||||
"meta": 1722566756351,
|
"meta": 1723022266773,
|
||||||
"relativePath": "image\\default_panel.png"
|
"relativePath": "image\\default_panel.png"
|
||||||
},
|
},
|
||||||
"e851e89b-faa2-4484-bea6-5c01dd9f06e2": {
|
"e851e89b-faa2-4484-bea6-5c01dd9f06e2": {
|
||||||
"asset": 1714966328658,
|
"asset": 1714966328658,
|
||||||
"meta": 1722566756353,
|
"meta": 1723022266846,
|
||||||
"relativePath": "image\\default_btn_normal.png"
|
"relativePath": "image\\default_btn_normal.png"
|
||||||
},
|
},
|
||||||
"db019bf7-f71c-4111-98cf-918ea180cb48": {
|
"db019bf7-f71c-4111-98cf-918ea180cb48": {
|
||||||
"asset": 1714966328737,
|
"asset": 1714966328737,
|
||||||
"meta": 1722566756066,
|
"meta": 1723022266415,
|
||||||
"relativePath": "model"
|
"relativePath": "model"
|
||||||
},
|
},
|
||||||
"e39e96e6-6f6e-413f-bcf1-ac7679bb648a": {
|
"e39e96e6-6f6e-413f-bcf1-ac7679bb648a": {
|
||||||
"asset": 1714966328737,
|
"asset": 1714966328737,
|
||||||
"meta": 1722566756366,
|
"meta": 1723022266789,
|
||||||
"relativePath": "model\\prefab"
|
"relativePath": "model\\prefab"
|
||||||
},
|
},
|
||||||
"9d60001f-b5f4-4726-a629-2659e3ded0b8": {
|
"9d60001f-b5f4-4726-a629-2659e3ded0b8": {
|
||||||
"asset": 1714966328673,
|
"asset": 1714966328673,
|
||||||
"meta": 1722566756395,
|
"meta": 1723022266842,
|
||||||
"relativePath": "image\\default_radio_button_on.png"
|
"relativePath": "image\\default_radio_button_on.png"
|
||||||
},
|
},
|
||||||
"d6d3ca85-4681-47c1-b5dd-d036a9d39ea2": {
|
"d6d3ca85-4681-47c1-b5dd-d036a9d39ea2": {
|
||||||
"asset": 1714966328689,
|
"asset": 1714966328689,
|
||||||
"meta": 1722566756406,
|
"meta": 1723022266854,
|
||||||
"relativePath": "image\\default_scrollbar_vertical.png"
|
"relativePath": "image\\default_scrollbar_vertical.png"
|
||||||
},
|
},
|
||||||
"71561142-4c83-4933-afca-cb7a17f67053": {
|
"71561142-4c83-4933-afca-cb7a17f67053": {
|
||||||
"asset": 1714966328658,
|
"asset": 1714966328658,
|
||||||
"meta": 1722566756355,
|
"meta": 1723022266775,
|
||||||
"relativePath": "image\\default_btn_disabled.png"
|
"relativePath": "image\\default_btn_disabled.png"
|
||||||
},
|
},
|
||||||
"617323dd-11f4-4dd3-8eec-0caf6b3b45b9": {
|
"617323dd-11f4-4dd3-8eec-0caf6b3b45b9": {
|
||||||
"asset": 1714966328689,
|
"asset": 1714966328689,
|
||||||
"meta": 1722566756404,
|
"meta": 1723022266860,
|
||||||
"relativePath": "image\\default_scrollbar_vertical_bg.png"
|
"relativePath": "image\\default_scrollbar_vertical_bg.png"
|
||||||
},
|
},
|
||||||
"cfef78f1-c8df-49b7-8ed0-4c953ace2621": {
|
"cfef78f1-c8df-49b7-8ed0-4c953ace2621": {
|
||||||
"asset": 1714966328673,
|
"asset": 1714966328673,
|
||||||
"meta": 1722566756358,
|
"meta": 1723022266785,
|
||||||
"relativePath": "image\\default_progressbar.png"
|
"relativePath": "image\\default_progressbar.png"
|
||||||
},
|
},
|
||||||
"4bab67cb-18e6-4099-b840-355f0473f890": {
|
"4bab67cb-18e6-4099-b840-355f0473f890": {
|
||||||
"asset": 1714966328689,
|
"asset": 1714966328689,
|
||||||
"meta": 1722566756401,
|
"meta": 1723022266787,
|
||||||
"relativePath": "image\\default_scrollbar_bg.png"
|
"relativePath": "image\\default_scrollbar_bg.png"
|
||||||
},
|
},
|
||||||
"edd215b9-2796-4a05-aaf5-81f96c9281ce": {
|
"edd215b9-2796-4a05-aaf5-81f96c9281ce": {
|
||||||
"asset": 1714966328658,
|
"asset": 1714966328658,
|
||||||
"meta": 1722566756365,
|
"meta": 1723022266852,
|
||||||
"relativePath": "image\\default_editbox_bg.png"
|
"relativePath": "image\\default_editbox_bg.png"
|
||||||
},
|
},
|
||||||
"f6e6dd15-71d1-4ffe-ace7-24fd39942c05": {
|
"f6e6dd15-71d1-4ffe-ace7-24fd39942c05": {
|
||||||
"asset": 1714966328752,
|
"asset": 1714966328752,
|
||||||
"meta": 1722566756067,
|
"meta": 1723022266416,
|
||||||
"relativePath": "obsolete"
|
"relativePath": "obsolete"
|
||||||
},
|
},
|
||||||
"99170b0b-d210-46f1-b213-7d9e3f23098a": {
|
"99170b0b-d210-46f1-b213-7d9e3f23098a": {
|
||||||
"asset": 1714966328673,
|
"asset": 1714966328673,
|
||||||
"meta": 1722566756363,
|
"meta": 1723022266848,
|
||||||
"relativePath": "image\\default_progressbar_bg.png"
|
"relativePath": "image\\default_progressbar_bg.png"
|
||||||
},
|
},
|
||||||
"c4480a0a-6ac5-443f-8b40-361a14257fc8": {
|
"c4480a0a-6ac5-443f-8b40-361a14257fc8": {
|
||||||
"asset": 1714966328706,
|
"asset": 1714966328706,
|
||||||
"meta": 1722566756741,
|
"meta": 1723022267242,
|
||||||
"relativePath": "materials\\builtin-phong.mtl"
|
"relativePath": "materials\\builtin-phong.mtl"
|
||||||
},
|
},
|
||||||
"f743d2b6-b7ea-4c14-a55b-547ed4d0a045": {
|
"f743d2b6-b7ea-4c14-a55b-547ed4d0a045": {
|
||||||
"asset": 1714966328752,
|
"asset": 1714966328752,
|
||||||
"meta": 1722566756068,
|
"meta": 1723022266417,
|
||||||
"relativePath": "particle"
|
"relativePath": "particle"
|
||||||
},
|
},
|
||||||
"600301aa-3357-4a10-b086-84f011fa32ba": {
|
"600301aa-3357-4a10-b086-84f011fa32ba": {
|
||||||
"asset": 1714966328642,
|
"asset": 1714966328642,
|
||||||
"meta": 1722566756398,
|
"meta": 1723022266778,
|
||||||
"relativePath": "image\\default-particle.png"
|
"relativePath": "image\\default-particle.png"
|
||||||
},
|
},
|
||||||
"a87cc147-01b2-43f8-8e42-a7ca90b0c757": {
|
"a87cc147-01b2-43f8-8e42-a7ca90b0c757": {
|
||||||
"asset": 1714966328721,
|
"asset": 1714966328721,
|
||||||
"meta": 1722566756657,
|
"meta": 1723022267147,
|
||||||
"relativePath": "model\\prefab\\box.prefab"
|
"relativePath": "model\\prefab\\box.prefab"
|
||||||
},
|
},
|
||||||
"b43ff3c2-02bb-4874-81f7-f2dea6970f18": {
|
"b43ff3c2-02bb-4874-81f7-f2dea6970f18": {
|
||||||
"asset": 1714966328658,
|
"asset": 1714966328658,
|
||||||
"meta": 1722566756397,
|
"meta": 1723022266781,
|
||||||
"relativePath": "image\\default_btn_pressed.png"
|
"relativePath": "image\\default_btn_pressed.png"
|
||||||
},
|
},
|
||||||
"fe1417b6-fe6b-46a4-ae7c-9fd331f33a2a": {
|
"fe1417b6-fe6b-46a4-ae7c-9fd331f33a2a": {
|
||||||
"asset": 1714966328737,
|
"asset": 1714966328737,
|
||||||
"meta": 1722566756643,
|
"meta": 1723022267147,
|
||||||
"relativePath": "model\\prefab\\capsule.prefab"
|
"relativePath": "model\\prefab\\capsule.prefab"
|
||||||
},
|
},
|
||||||
"ae6c6c98-11e4-452f-8758-75f5c6a56e83": {
|
"ae6c6c98-11e4-452f-8758-75f5c6a56e83": {
|
||||||
"asset": 1714966328831,
|
"asset": 1714966328831,
|
||||||
"meta": 1722566756069,
|
"meta": 1723022266417,
|
||||||
"relativePath": "prefab"
|
"relativePath": "prefab"
|
||||||
},
|
},
|
||||||
"0291c134-b3da-4098-b7b5-e397edbe947f": {
|
"0291c134-b3da-4098-b7b5-e397edbe947f": {
|
||||||
"asset": 1714966328689,
|
"asset": 1714966328689,
|
||||||
"meta": 1722566756394,
|
"meta": 1723022266850,
|
||||||
"relativePath": "image\\default_scrollbar.png"
|
"relativePath": "image\\default_scrollbar.png"
|
||||||
},
|
},
|
||||||
"b5fc2cf2-7942-483d-be1f-bbeadc4714ad": {
|
"b5fc2cf2-7942-483d-be1f-bbeadc4714ad": {
|
||||||
"asset": 1714966328737,
|
"asset": 1714966328737,
|
||||||
"meta": 1722566756675,
|
"meta": 1723022267147,
|
||||||
"relativePath": "model\\prefab\\cone.prefab"
|
"relativePath": "model\\prefab\\cone.prefab"
|
||||||
},
|
},
|
||||||
"1c5e4038-953a-44c2-b620-0bbfc6170477": {
|
"1c5e4038-953a-44c2-b620-0bbfc6170477": {
|
||||||
"asset": 1714966328737,
|
"asset": 1714966328737,
|
||||||
"meta": 1722566756675,
|
"meta": 1723022267147,
|
||||||
"relativePath": "model\\prefab\\cylinder.prefab"
|
"relativePath": "model\\prefab\\cylinder.prefab"
|
||||||
},
|
},
|
||||||
"6e056173-d285-473c-b206-40a7fff5386e": {
|
"6e056173-d285-473c-b206-40a7fff5386e": {
|
||||||
"asset": 1714966328689,
|
"asset": 1714966328689,
|
||||||
"meta": 1722566756403,
|
"meta": 1723022266857,
|
||||||
"relativePath": "image\\default_sprite.png"
|
"relativePath": "image\\default_sprite.png"
|
||||||
},
|
},
|
||||||
"3f376125-a699-40ca-ad05-04d662eaa1f2": {
|
"3f376125-a699-40ca-ad05-04d662eaa1f2": {
|
||||||
"asset": 1714966328737,
|
"asset": 1714966328737,
|
||||||
"meta": 1722566756675,
|
"meta": 1723022267162,
|
||||||
"relativePath": "model\\prefab\\plane.prefab"
|
"relativePath": "model\\prefab\\plane.prefab"
|
||||||
},
|
},
|
||||||
"de510076-056b-484f-b94c-83bef217d0e1": {
|
"de510076-056b-484f-b94c-83bef217d0e1": {
|
||||||
"asset": 1714966328737,
|
"asset": 1714966328737,
|
||||||
"meta": 1722566756675,
|
"meta": 1723022267162,
|
||||||
"relativePath": "model\\prefab\\torus.prefab"
|
"relativePath": "model\\prefab\\torus.prefab"
|
||||||
},
|
},
|
||||||
"567dcd80-8bf4-4535-8a5a-313f1caf078a": {
|
"567dcd80-8bf4-4535-8a5a-313f1caf078a": {
|
||||||
"asset": 1714966328673,
|
"asset": 1714966328673,
|
||||||
"meta": 1722566756362,
|
"meta": 1723022266770,
|
||||||
"relativePath": "image\\default_radio_button_off.png"
|
"relativePath": "image\\default_radio_button_off.png"
|
||||||
},
|
},
|
||||||
"6c9ef10d-b479-420b-bfe6-39cdda6a8ae0": {
|
"6c9ef10d-b479-420b-bfe6-39cdda6a8ae0": {
|
||||||
"asset": 1714966328737,
|
"asset": 1714966328737,
|
||||||
"meta": 1722566756675,
|
"meta": 1723022267162,
|
||||||
"relativePath": "model\\prefab\\quad.prefab"
|
"relativePath": "model\\prefab\\quad.prefab"
|
||||||
},
|
},
|
||||||
"2d9a4b85-b0ab-4c46-84c5-18f393ab2058": {
|
"2d9a4b85-b0ab-4c46-84c5-18f393ab2058": {
|
||||||
"asset": 1714966328737,
|
"asset": 1714966328737,
|
||||||
"meta": 1722566756675,
|
"meta": 1723022267162,
|
||||||
"relativePath": "model\\prefab\\sphere.prefab"
|
"relativePath": "model\\prefab\\sphere.prefab"
|
||||||
},
|
},
|
||||||
"0275e94c-56a7-410f-bd1a-fc7483f7d14a": {
|
"0275e94c-56a7-410f-bd1a-fc7483f7d14a": {
|
||||||
"asset": 1714966328705,
|
"asset": 1714966328705,
|
||||||
"meta": 1722566756400,
|
"meta": 1723022266844,
|
||||||
"relativePath": "image\\default_sprite_splash.png"
|
"relativePath": "image\\default_sprite_splash.png"
|
||||||
},
|
},
|
||||||
"70d7cdb0-04cd-41bb-9480-c06a4785f386": {
|
"70d7cdb0-04cd-41bb-9480-c06a4785f386": {
|
||||||
"asset": 1714966328768,
|
"asset": 1714966328768,
|
||||||
"meta": 1722566756415,
|
"meta": 1723022266871,
|
||||||
"relativePath": "prefab\\3d-camera.prefab"
|
"relativePath": "prefab\\3d-camera.prefab"
|
||||||
},
|
},
|
||||||
"ed88f13d-fcad-4848-aa35-65a2cb973584": {
|
"ed88f13d-fcad-4848-aa35-65a2cb973584": {
|
||||||
"asset": 1714966328768,
|
"asset": 1714966328768,
|
||||||
"meta": 1722566756418,
|
"meta": 1723022266885,
|
||||||
"relativePath": "prefab\\3d-stage.prefab"
|
"relativePath": "prefab\\3d-stage.prefab"
|
||||||
},
|
},
|
||||||
"a3ee0214-b432-4865-9666-4a3211814282": {
|
"a3ee0214-b432-4865-9666-4a3211814282": {
|
||||||
"asset": 1714966328800,
|
"asset": 1714966328800,
|
||||||
"meta": 1722566756416,
|
"meta": 1723022266872,
|
||||||
"relativePath": "prefab\\light"
|
"relativePath": "prefab\\light"
|
||||||
},
|
},
|
||||||
"897ef7a1-4860-4f64-968d-f5924b18668a": {
|
"897ef7a1-4860-4f64-968d-f5924b18668a": {
|
||||||
"asset": 1714966328752,
|
"asset": 1714966328752,
|
||||||
"meta": 1722566756413,
|
"meta": 1723022266869,
|
||||||
"relativePath": "prefab\\2d-camera.prefab"
|
"relativePath": "prefab\\2d-camera.prefab"
|
||||||
},
|
},
|
||||||
"2c937608-2562-40ea-b264-7395df6f0cea": {
|
"2c937608-2562-40ea-b264-7395df6f0cea": {
|
||||||
"asset": 1714966328768,
|
"asset": 1714966328768,
|
||||||
"meta": 1722566756426,
|
"meta": 1723022266878,
|
||||||
"relativePath": "prefab\\canvas.prefab"
|
"relativePath": "prefab\\canvas.prefab"
|
||||||
},
|
},
|
||||||
"972b9a4d-47ee-4c74-b5c3-61d8a69bc29f": {
|
"972b9a4d-47ee-4c74-b5c3-61d8a69bc29f": {
|
||||||
"asset": 1714966328768,
|
"asset": 1714966328768,
|
||||||
"meta": 1722566756423,
|
"meta": 1723022266880,
|
||||||
"relativePath": "prefab\\button.prefab"
|
"relativePath": "prefab\\button.prefab"
|
||||||
},
|
},
|
||||||
"70bbeb73-6dc2-4ee4-8faf-76b3a0e34ec4": {
|
"70bbeb73-6dc2-4ee4-8faf-76b3a0e34ec4": {
|
||||||
"asset": 1714966328768,
|
"asset": 1714966328768,
|
||||||
"meta": 1722566756421,
|
"meta": 1723022266876,
|
||||||
"relativePath": "prefab\\3d-particle.prefab"
|
"relativePath": "prefab\\3d-particle.prefab"
|
||||||
},
|
},
|
||||||
"61aeb05b-3b32-452b-8eed-2b76deeed554": {
|
"61aeb05b-3b32-452b-8eed-2b76deeed554": {
|
||||||
"asset": 1714966328783,
|
"asset": 1714966328783,
|
||||||
"meta": 1722566756430,
|
"meta": 1723022266883,
|
||||||
"relativePath": "prefab\\editbox.prefab"
|
"relativePath": "prefab\\editbox.prefab"
|
||||||
},
|
},
|
||||||
"27756ebb-3d33-44b0-9b96-e858fadd4dd4": {
|
"27756ebb-3d33-44b0-9b96-e858fadd4dd4": {
|
||||||
"asset": 1714966328783,
|
"asset": 1714966328783,
|
||||||
"meta": 1722566756437,
|
"meta": 1723022266894,
|
||||||
"relativePath": "prefab\\label.prefab"
|
"relativePath": "prefab\\label.prefab"
|
||||||
},
|
},
|
||||||
"2be36297-9abb-4fee-8049-9ed5e271da8a": {
|
"2be36297-9abb-4fee-8049-9ed5e271da8a": {
|
||||||
"asset": 1714966328721,
|
"asset": 1714966328721,
|
||||||
"meta": 1722566756479,
|
"meta": 1723022266961,
|
||||||
"relativePath": "misc\\default_video.mp4"
|
"relativePath": "misc\\default_video.mp4"
|
||||||
},
|
},
|
||||||
"785a442c-3ceb-45be-a46e-7317f625f3b9": {
|
"785a442c-3ceb-45be-a46e-7317f625f3b9": {
|
||||||
"asset": 1714966328783,
|
"asset": 1714966328783,
|
||||||
"meta": 1722566756440,
|
"meta": 1723022266897,
|
||||||
"relativePath": "prefab\\layout.prefab"
|
"relativePath": "prefab\\layout.prefab"
|
||||||
},
|
},
|
||||||
"ca8401fe-ad6e-41a8-bd46-8e3e4e9945be": {
|
"ca8401fe-ad6e-41a8-bd46-8e3e4e9945be": {
|
||||||
"asset": 1714966328800,
|
"asset": 1714966328800,
|
||||||
"meta": 1722566756446,
|
"meta": 1723022266903,
|
||||||
"relativePath": "prefab\\pageview.prefab"
|
"relativePath": "prefab\\pageview.prefab"
|
||||||
},
|
},
|
||||||
"cd33edea-55f5-46c2-958d-357a01384a36": {
|
"cd33edea-55f5-46c2-958d-357a01384a36": {
|
||||||
"asset": 1714966328800,
|
"asset": 1714966328800,
|
||||||
"meta": 1722566756447,
|
"meta": 1723022266900,
|
||||||
"relativePath": "prefab\\particlesystem.prefab"
|
"relativePath": "prefab\\particlesystem.prefab"
|
||||||
},
|
},
|
||||||
"5965ffac-69da-4b55-bcde-9225d0613c28": {
|
"5965ffac-69da-4b55-bcde-9225d0613c28": {
|
||||||
"asset": 1714966328800,
|
"asset": 1714966328800,
|
||||||
"meta": 1722566756450,
|
"meta": 1723022266906,
|
||||||
"relativePath": "prefab\\progressBar.prefab"
|
"relativePath": "prefab\\progressBar.prefab"
|
||||||
},
|
},
|
||||||
"4a37dd57-78cd-4cec-aad4-f11a73d12b63": {
|
"4a37dd57-78cd-4cec-aad4-f11a73d12b63": {
|
||||||
"asset": 1714966328800,
|
"asset": 1714966328800,
|
||||||
"meta": 1722566756456,
|
"meta": 1723022266908,
|
||||||
"relativePath": "prefab\\richtext.prefab"
|
"relativePath": "prefab\\richtext.prefab"
|
||||||
},
|
},
|
||||||
"32044bd2-481f-4cf1-a656-e2b2fb1594eb": {
|
"32044bd2-481f-4cf1-a656-e2b2fb1594eb": {
|
||||||
"asset": 1714966328800,
|
"asset": 1714966328800,
|
||||||
"meta": 1722566756454,
|
"meta": 1723022266915,
|
||||||
"relativePath": "prefab\\scrollview.prefab"
|
"relativePath": "prefab\\scrollview.prefab"
|
||||||
},
|
},
|
||||||
"0004d1cf-a0ad-47d8-ab17-34d3db9d35a3": {
|
"0004d1cf-a0ad-47d8-ab17-34d3db9d35a3": {
|
||||||
"asset": 1714966328800,
|
"asset": 1714966328800,
|
||||||
"meta": 1722566756452,
|
"meta": 1723022266913,
|
||||||
"relativePath": "prefab\\slider.prefab"
|
"relativePath": "prefab\\slider.prefab"
|
||||||
},
|
},
|
||||||
"96083d03-c332-4a3f-9386-d03e2d19e8ee": {
|
"96083d03-c332-4a3f-9386-d03e2d19e8ee": {
|
||||||
"asset": 1714966328815,
|
"asset": 1714966328815,
|
||||||
"meta": 1722566756479,
|
"meta": 1723022266930,
|
||||||
"relativePath": "prefab\\sprite.prefab"
|
"relativePath": "prefab\\sprite.prefab"
|
||||||
},
|
},
|
||||||
"b181c1e4-0a72-4a91-bfb0-ae6f36ca60bd": {
|
"b181c1e4-0a72-4a91-bfb0-ae6f36ca60bd": {
|
||||||
"asset": 1714966328706,
|
"asset": 1714966328706,
|
||||||
"meta": 1722566756472,
|
"meta": 1723022266961,
|
||||||
"relativePath": "image\\default_toggle_pressed.png"
|
"relativePath": "image\\default_toggle_pressed.png"
|
||||||
},
|
},
|
||||||
"d8afc78c-4eac-4a9f-83dd-67bc70344d33": {
|
"d8afc78c-4eac-4a9f-83dd-67bc70344d33": {
|
||||||
"asset": 1714966328862,
|
"asset": 1714966328862,
|
||||||
"meta": 1722566756069,
|
"meta": 1723022266418,
|
||||||
"relativePath": "resources"
|
"relativePath": "resources"
|
||||||
},
|
},
|
||||||
"294c1663-4adf-4a1e-a795-53808011a38a": {
|
"294c1663-4adf-4a1e-a795-53808011a38a": {
|
||||||
"asset": 1714966328862,
|
"asset": 1714966328862,
|
||||||
"meta": 1722566756477,
|
"meta": 1723022266930,
|
||||||
"relativePath": "resources\\effects"
|
"relativePath": "resources\\effects"
|
||||||
},
|
},
|
||||||
"bbee2217-c261-49bd-a8ce-708d6bcc3500": {
|
"bbee2217-c261-49bd-a8ce-708d6bcc3500": {
|
||||||
"asset": 1714966328893,
|
"asset": 1714966328893,
|
||||||
"meta": 1722566756479,
|
"meta": 1723022266945,
|
||||||
"relativePath": "resources\\materials"
|
"relativePath": "resources\\materials"
|
||||||
},
|
},
|
||||||
"30682f87-9f0d-4f17-8a44-72863791461b": {
|
"30682f87-9f0d-4f17-8a44-72863791461b": {
|
||||||
"asset": 1714966328831,
|
"asset": 1714966328831,
|
||||||
"meta": 1722566756518,
|
"meta": 1723022266976,
|
||||||
"relativePath": "resources\\effects\\builtin-2d-graphics.effect"
|
"relativePath": "resources\\effects\\builtin-2d-graphics.effect"
|
||||||
},
|
},
|
||||||
"1f55e3be-b89b-4b79-88de-47fd31018044": {
|
"1f55e3be-b89b-4b79-88de-47fd31018044": {
|
||||||
"asset": 1714966328815,
|
"asset": 1714966328815,
|
||||||
"meta": 1722566756479,
|
"meta": 1723022266945,
|
||||||
"relativePath": "prefab\\sprite_splash.prefab"
|
"relativePath": "prefab\\sprite_splash.prefab"
|
||||||
},
|
},
|
||||||
"144c3297-af63-49e8-b8ef-1cfa29b3be28": {
|
"144c3297-af63-49e8-b8ef-1cfa29b3be28": {
|
||||||
"asset": 1714966328831,
|
"asset": 1714966328831,
|
||||||
"meta": 1722566756524,
|
"meta": 1723022266994,
|
||||||
"relativePath": "resources\\effects\\builtin-2d-gray-sprite.effect"
|
"relativePath": "resources\\effects\\builtin-2d-gray-sprite.effect"
|
||||||
},
|
},
|
||||||
"d29077ba-1627-4a72-9579-7b56a235340c": {
|
"d29077ba-1627-4a72-9579-7b56a235340c": {
|
||||||
"asset": 1714966328706,
|
"asset": 1714966328706,
|
||||||
"meta": 1722566756479,
|
"meta": 1723022266945,
|
||||||
"relativePath": "image\\default_toggle_normal.png"
|
"relativePath": "image\\default_toggle_normal.png"
|
||||||
},
|
},
|
||||||
"f18742d7-56d2-4eb5-ae49-2d9d710b37c8": {
|
"f18742d7-56d2-4eb5-ae49-2d9d710b37c8": {
|
||||||
"asset": 1714966328831,
|
"asset": 1714966328831,
|
||||||
"meta": 1722566756543,
|
"meta": 1723022267008,
|
||||||
"relativePath": "resources\\effects\\builtin-2d-label.effect"
|
"relativePath": "resources\\effects\\builtin-2d-label.effect"
|
||||||
},
|
},
|
||||||
"0e93aeaa-0b53-4e40-b8e0-6268b4e07bd7": {
|
"0e93aeaa-0b53-4e40-b8e0-6268b4e07bd7": {
|
||||||
"asset": 1714966328831,
|
"asset": 1714966328831,
|
||||||
"meta": 1722566756557,
|
"meta": 1723022267008,
|
||||||
"relativePath": "resources\\effects\\builtin-2d-spine.effect"
|
"relativePath": "resources\\effects\\builtin-2d-spine.effect"
|
||||||
},
|
},
|
||||||
"c25b9d50-c8fc-4d27-beeb-6e7c1f2e5c0f": {
|
"c25b9d50-c8fc-4d27-beeb-6e7c1f2e5c0f": {
|
||||||
"asset": 1714966328706,
|
"asset": 1714966328706,
|
||||||
"meta": 1722566756475,
|
"meta": 1723022266961,
|
||||||
"relativePath": "image\\default_toggle_disabled.png"
|
"relativePath": "image\\default_toggle_disabled.png"
|
||||||
},
|
},
|
||||||
"2874f8dd-416c-4440-81b7-555975426e93": {
|
"2874f8dd-416c-4440-81b7-555975426e93": {
|
||||||
"asset": 1714966328846,
|
"asset": 1714966328846,
|
||||||
"meta": 1722566756560,
|
"meta": 1723022267024,
|
||||||
"relativePath": "resources\\effects\\builtin-2d-sprite.effect"
|
"relativePath": "resources\\effects\\builtin-2d-sprite.effect"
|
||||||
},
|
},
|
||||||
"7de03a80-4457-438d-95a7-3e7cdffd6086": {
|
"7de03a80-4457-438d-95a7-3e7cdffd6086": {
|
||||||
"asset": 1714966328815,
|
"asset": 1714966328815,
|
||||||
"meta": 1722566756496,
|
"meta": 1723022266945,
|
||||||
"relativePath": "prefab\\tiledmap.prefab"
|
"relativePath": "prefab\\tiledmap.prefab"
|
||||||
},
|
},
|
||||||
"73a0903d-d80e-4e3c-aa67-f999543c08f5": {
|
"73a0903d-d80e-4e3c-aa67-f999543c08f5": {
|
||||||
"asset": 1714966328706,
|
"asset": 1714966328706,
|
||||||
"meta": 1722566756479,
|
"meta": 1723022266930,
|
||||||
"relativePath": "image\\default_toggle_checkmark.png"
|
"relativePath": "image\\default_toggle_checkmark.png"
|
||||||
},
|
},
|
||||||
"829a282c-b049-4019-bd38-5ace8d8a6417": {
|
"829a282c-b049-4019-bd38-5ace8d8a6417": {
|
||||||
"asset": 1714966328846,
|
"asset": 1714966328846,
|
||||||
"meta": 1722566756625,
|
"meta": 1723022267094,
|
||||||
"relativePath": "resources\\effects\\builtin-3d-particle.effect"
|
"relativePath": "resources\\effects\\builtin-3d-particle.effect"
|
||||||
},
|
},
|
||||||
"2a7c0036-e0b3-4fe1-8998-89a54b8a2bec": {
|
"2a7c0036-e0b3-4fe1-8998-89a54b8a2bec": {
|
||||||
"asset": 1714966328846,
|
"asset": 1714966328846,
|
||||||
"meta": 1722566756643,
|
"meta": 1723022267127,
|
||||||
"relativePath": "resources\\effects\\builtin-3d-trail.effect"
|
"relativePath": "resources\\effects\\builtin-3d-trail.effect"
|
||||||
},
|
},
|
||||||
"c0040c95-c57f-49cd-9cbc-12316b73d0d4": {
|
"c0040c95-c57f-49cd-9cbc-12316b73d0d4": {
|
||||||
"asset": 1714966328846,
|
"asset": 1714966328846,
|
||||||
"meta": 1722566756643,
|
"meta": 1723022267135,
|
||||||
"relativePath": "resources\\effects\\builtin-clear-stencil.effect"
|
"relativePath": "resources\\effects\\builtin-clear-stencil.effect"
|
||||||
},
|
},
|
||||||
"8a96b965-2dc0-4e03-aa90-3b79cb93b5b4": {
|
"8a96b965-2dc0-4e03-aa90-3b79cb93b5b4": {
|
||||||
"asset": 1714966328752,
|
"asset": 1714966328752,
|
||||||
"meta": 1722566756479,
|
"meta": 1723022266930,
|
||||||
"relativePath": "obsolete\\atom.png"
|
"relativePath": "obsolete\\atom.png"
|
||||||
},
|
},
|
||||||
"6d91e591-4ce0-465c-809f-610ec95019c6": {
|
"6d91e591-4ce0-465c-809f-610ec95019c6": {
|
||||||
"asset": 1714966328862,
|
"asset": 1714966328862,
|
||||||
"meta": 1722566756657,
|
"meta": 1723022267147,
|
||||||
"relativePath": "resources\\effects\\builtin-unlit.effect"
|
"relativePath": "resources\\effects\\builtin-unlit.effect"
|
||||||
},
|
},
|
||||||
"0e42ba95-1fa1-46aa-b2cf-143cd1bcee2c": {
|
"0e42ba95-1fa1-46aa-b2cf-143cd1bcee2c": {
|
||||||
"asset": 1714966328815,
|
"asset": 1714966328815,
|
||||||
"meta": 1722566756496,
|
"meta": 1723022266945,
|
||||||
"relativePath": "prefab\\tiledtile.prefab"
|
"relativePath": "prefab\\tiledtile.prefab"
|
||||||
},
|
},
|
||||||
"0d784963-d024-4ea6-a7db-03be0ad63010": {
|
"0d784963-d024-4ea6-a7db-03be0ad63010": {
|
||||||
"asset": 1714966328815,
|
"asset": 1714966328815,
|
||||||
"meta": 1722566756496,
|
"meta": 1723022266945,
|
||||||
"relativePath": "prefab\\toggle.prefab"
|
"relativePath": "prefab\\toggle.prefab"
|
||||||
},
|
},
|
||||||
"bf0a434c-84dd-4a8e-a08a-7a36f180cc75": {
|
"bf0a434c-84dd-4a8e-a08a-7a36f180cc75": {
|
||||||
"asset": 1714966328815,
|
"asset": 1714966328815,
|
||||||
"meta": 1722566756496,
|
"meta": 1723022266961,
|
||||||
"relativePath": "prefab\\toggleContainer.prefab"
|
"relativePath": "prefab\\toggleContainer.prefab"
|
||||||
},
|
},
|
||||||
"8c5001fd-07ee-4a4b-a8a0-63e15195e94d": {
|
"8c5001fd-07ee-4a4b-a8a0-63e15195e94d": {
|
||||||
"asset": 1714966328831,
|
"asset": 1714966328831,
|
||||||
"meta": 1722566756625,
|
"meta": 1723022267104,
|
||||||
"relativePath": "prefab\\webview.prefab"
|
"relativePath": "prefab\\webview.prefab"
|
||||||
},
|
},
|
||||||
"61906da3-7003-4bda-9abc-5769c76faee4": {
|
"61906da3-7003-4bda-9abc-5769c76faee4": {
|
||||||
"asset": 1714966328783,
|
"asset": 1714966328783,
|
||||||
"meta": 1722566756675,
|
"meta": 1723022267162,
|
||||||
"relativePath": "prefab\\light\\ambient.prefab"
|
"relativePath": "prefab\\light\\ambient.prefab"
|
||||||
},
|
},
|
||||||
"ddb99b39-7004-47cd-9705-751905c43c46": {
|
"ddb99b39-7004-47cd-9705-751905c43c46": {
|
||||||
"asset": 1714966328800,
|
"asset": 1714966328800,
|
||||||
"meta": 1722566756675,
|
"meta": 1723022267162,
|
||||||
"relativePath": "prefab\\light\\directional.prefab"
|
"relativePath": "prefab\\light\\directional.prefab"
|
||||||
},
|
},
|
||||||
"d1b8be49-b0a0-435c-83b7-552bed4bbe35": {
|
"d1b8be49-b0a0-435c-83b7-552bed4bbe35": {
|
||||||
"asset": 1714966328815,
|
"asset": 1714966328815,
|
||||||
"meta": 1722566756496,
|
"meta": 1723022266961,
|
||||||
"relativePath": "prefab\\toggleGroup.prefab"
|
"relativePath": "prefab\\toggleGroup.prefab"
|
||||||
},
|
},
|
||||||
"232d2782-c4bd-4bb4-9e01-909f03d6d3b9": {
|
"232d2782-c4bd-4bb4-9e01-909f03d6d3b9": {
|
||||||
"asset": 1714966328815,
|
"asset": 1714966328815,
|
||||||
"meta": 1722566756518,
|
"meta": 1723022266976,
|
||||||
"relativePath": "prefab\\videoplayer.prefab"
|
"relativePath": "prefab\\videoplayer.prefab"
|
||||||
},
|
},
|
||||||
"f5331fd2-bf42-4ee3-a3fd-3e1657600eff": {
|
"f5331fd2-bf42-4ee3-a3fd-3e1657600eff": {
|
||||||
"asset": 1714966328800,
|
"asset": 1714966328800,
|
||||||
"meta": 1722566756690,
|
"meta": 1723022267162,
|
||||||
"relativePath": "prefab\\light\\spot.prefab"
|
"relativePath": "prefab\\light\\spot.prefab"
|
||||||
},
|
},
|
||||||
"0cf30284-9073-46bc-9eba-e62b69dbbff3": {
|
"0cf30284-9073-46bc-9eba-e62b69dbbff3": {
|
||||||
"asset": 1714966328800,
|
"asset": 1714966328800,
|
||||||
"meta": 1722566756690,
|
"meta": 1723022267178,
|
||||||
"relativePath": "prefab\\light\\point.prefab"
|
"relativePath": "prefab\\light\\point.prefab"
|
||||||
},
|
},
|
||||||
"6f801092-0c37-4f30-89ef-c8d960825b36": {
|
"6f801092-0c37-4f30-89ef-c8d960825b36": {
|
||||||
"asset": 1714966328862,
|
"asset": 1714966328862,
|
||||||
"meta": 1722566756758,
|
"meta": 1723022267273,
|
||||||
"relativePath": "resources\\materials\\builtin-2d-base.mtl"
|
"relativePath": "resources\\materials\\builtin-2d-base.mtl"
|
||||||
},
|
},
|
||||||
"a153945d-2511-4c14-be7b-05d242f47d57": {
|
"a153945d-2511-4c14-be7b-05d242f47d57": {
|
||||||
"asset": 1714966328862,
|
"asset": 1714966328862,
|
||||||
"meta": 1722566756758,
|
"meta": 1723022267273,
|
||||||
"relativePath": "resources\\materials\\builtin-2d-graphics.mtl"
|
"relativePath": "resources\\materials\\builtin-2d-graphics.mtl"
|
||||||
},
|
},
|
||||||
"7afd064b-113f-480e-b793-8817d19f63c3": {
|
"7afd064b-113f-480e-b793-8817d19f63c3": {
|
||||||
"asset": 1714966328878,
|
"asset": 1714966328878,
|
||||||
"meta": 1722566756758,
|
"meta": 1723022267273,
|
||||||
"relativePath": "resources\\materials\\builtin-2d-spine.mtl"
|
"relativePath": "resources\\materials\\builtin-2d-spine.mtl"
|
||||||
},
|
},
|
||||||
"432fa09c-cf03-4cff-a186-982604408a07": {
|
"432fa09c-cf03-4cff-a186-982604408a07": {
|
||||||
"asset": 1714966328878,
|
"asset": 1714966328878,
|
||||||
"meta": 1722566756775,
|
"meta": 1723022267289,
|
||||||
"relativePath": "resources\\materials\\builtin-3d-particle.mtl"
|
"relativePath": "resources\\materials\\builtin-3d-particle.mtl"
|
||||||
},
|
},
|
||||||
"cf7e0bb8-a81c-44a9-ad79-d28d43991032": {
|
"cf7e0bb8-a81c-44a9-ad79-d28d43991032": {
|
||||||
"asset": 1714966328878,
|
"asset": 1714966328878,
|
||||||
"meta": 1722566756758,
|
"meta": 1723022267273,
|
||||||
"relativePath": "resources\\materials\\builtin-clear-stencil.mtl"
|
"relativePath": "resources\\materials\\builtin-clear-stencil.mtl"
|
||||||
},
|
},
|
||||||
"3a7bb79f-32fd-422e-ada2-96f518fed422": {
|
"3a7bb79f-32fd-422e-ada2-96f518fed422": {
|
||||||
"asset": 1714966328862,
|
"asset": 1714966328862,
|
||||||
"meta": 1722566756758,
|
"meta": 1723022267273,
|
||||||
"relativePath": "resources\\materials\\builtin-2d-gray-sprite.mtl"
|
"relativePath": "resources\\materials\\builtin-2d-gray-sprite.mtl"
|
||||||
},
|
},
|
||||||
"466d4f9b-e5f4-4ea8-85d5-3c6e9a65658a": {
|
"466d4f9b-e5f4-4ea8-85d5-3c6e9a65658a": {
|
||||||
"asset": 1714966328878,
|
"asset": 1714966328878,
|
||||||
"meta": 1722566756758,
|
"meta": 1723022267273,
|
||||||
"relativePath": "resources\\materials\\builtin-3d-trail.mtl"
|
"relativePath": "resources\\materials\\builtin-3d-trail.mtl"
|
||||||
},
|
},
|
||||||
"e02d87d4-e599-4d16-8001-e14891ac6506": {
|
"e02d87d4-e599-4d16-8001-e14891ac6506": {
|
||||||
"asset": 1714966328878,
|
"asset": 1714966328878,
|
||||||
"meta": 1722566756758,
|
"meta": 1723022267273,
|
||||||
"relativePath": "resources\\materials\\builtin-2d-label.mtl"
|
"relativePath": "resources\\materials\\builtin-2d-label.mtl"
|
||||||
},
|
},
|
||||||
"2a296057-247c-4a1c-bbeb-0548b6c98650": {
|
"2a296057-247c-4a1c-bbeb-0548b6c98650": {
|
||||||
"asset": 1714966328893,
|
"asset": 1714966328893,
|
||||||
"meta": 1722566756758,
|
"meta": 1723022267288,
|
||||||
"relativePath": "resources\\materials\\builtin-unlit.mtl"
|
"relativePath": "resources\\materials\\builtin-unlit.mtl"
|
||||||
},
|
},
|
||||||
"eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432": {
|
"eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432": {
|
||||||
"asset": 1714966328878,
|
"asset": 1714966328878,
|
||||||
"meta": 1722566756773,
|
"meta": 1723022267273,
|
||||||
"relativePath": "resources\\materials\\builtin-2d-sprite.mtl"
|
"relativePath": "resources\\materials\\builtin-2d-sprite.mtl"
|
||||||
},
|
},
|
||||||
"d0a82d39-bede-46c4-b698-c81ff0dedfff": {
|
"d0a82d39-bede-46c4-b698-c81ff0dedfff": {
|
||||||
"asset": 1714966328752,
|
"asset": 1714966328752,
|
||||||
"meta": 1722566756493,
|
"meta": 1723022266945,
|
||||||
"relativePath": "particle\\atom.png"
|
"relativePath": "particle\\atom.png"
|
||||||
},
|
},
|
||||||
"ae860740-a9fe-4af7-b351-95e46e9ec909": {
|
"ae860740-a9fe-4af7-b351-95e46e9ec909": {
|
||||||
|
@ -826,24 +821,19 @@
|
||||||
},
|
},
|
||||||
"b8223619-7e38-47c4-841f-9160c232495a": {
|
"b8223619-7e38-47c4-841f-9160c232495a": {
|
||||||
"asset": 1714966328752,
|
"asset": 1714966328752,
|
||||||
"meta": 1722566756793,
|
"meta": 1723022267308,
|
||||||
"relativePath": "obsolete\\atom.plist"
|
"relativePath": "obsolete\\atom.plist"
|
||||||
},
|
},
|
||||||
"b2687ac4-099e-403c-a192-ff477686f4f5": {
|
"b2687ac4-099e-403c-a192-ff477686f4f5": {
|
||||||
"asset": 1714966328752,
|
"asset": 1714966328752,
|
||||||
"meta": 1722566756793,
|
"meta": 1723022267308,
|
||||||
"relativePath": "particle\\atom.plist"
|
"relativePath": "particle\\atom.plist"
|
||||||
},
|
},
|
||||||
"954fec8b-cd16-4bb9-a3b7-7719660e7558": {
|
"954fec8b-cd16-4bb9-a3b7-7719660e7558": {
|
||||||
"asset": 1714966328737,
|
"asset": 1714966328737,
|
||||||
"meta": 1722566758520,
|
"meta": 1723022269745,
|
||||||
"relativePath": "model\\primitives.fbx"
|
"relativePath": "model\\primitives.fbx"
|
||||||
},
|
},
|
||||||
"f2f0b239-3ec5-48fa-8d7c-c45e86f8a55a": {
|
|
||||||
"asset": 1720147113114,
|
|
||||||
"meta": 1720147182869,
|
|
||||||
"relativePath": "Script\\GameData.ts"
|
|
||||||
},
|
|
||||||
"9ed31f56-d049-4890-9ffd-ef08fd28987c": {
|
"9ed31f56-d049-4890-9ffd-ef08fd28987c": {
|
||||||
"asset": 1720169819483,
|
"asset": 1720169819483,
|
||||||
"meta": 1720169867560,
|
"meta": 1720169867560,
|
||||||
|
@ -859,11 +849,6 @@
|
||||||
"meta": 1720689091312,
|
"meta": 1720689091312,
|
||||||
"relativePath": "resources\\rank_Btn.png"
|
"relativePath": "resources\\rank_Btn.png"
|
||||||
},
|
},
|
||||||
"b26a4f51-0921-4f4f-80be-17bc4077adad": {
|
|
||||||
"asset": 1722333697593,
|
|
||||||
"meta": 1722333729912,
|
|
||||||
"relativePath": "Script\\GameManager.ts"
|
|
||||||
},
|
|
||||||
"35a73693-1080-4066-85ca-a7fc6eb70cd4": {
|
"35a73693-1080-4066-85ca-a7fc6eb70cd4": {
|
||||||
"asset": 1722415096961,
|
"asset": 1722415096961,
|
||||||
"meta": 1722415109792,
|
"meta": 1722415109792,
|
||||||
|
@ -874,9 +859,24 @@
|
||||||
"meta": 1722566810384,
|
"meta": 1722566810384,
|
||||||
"relativePath": "Script\\RankManager.ts"
|
"relativePath": "Script\\RankManager.ts"
|
||||||
},
|
},
|
||||||
|
"f2f0b239-3ec5-48fa-8d7c-c45e86f8a55a": {
|
||||||
|
"asset": 1723022357351,
|
||||||
|
"meta": 1723022384575,
|
||||||
|
"relativePath": "Script\\GameData.ts"
|
||||||
|
},
|
||||||
|
"7fd749ea-5b80-4237-a685-6a53799e6c8b": {
|
||||||
|
"asset": 1723022427717,
|
||||||
|
"meta": 1723022428038,
|
||||||
|
"relativePath": "Script\\Player.ts"
|
||||||
|
},
|
||||||
|
"b26a4f51-0921-4f4f-80be-17bc4077adad": {
|
||||||
|
"asset": 1723022479467,
|
||||||
|
"meta": 1723022484812,
|
||||||
|
"relativePath": "Script\\GameManager.ts"
|
||||||
|
},
|
||||||
"08fd7f48-1f83-43cb-a7b8-dc950ae0f526": {
|
"08fd7f48-1f83-43cb-a7b8-dc950ae0f526": {
|
||||||
"asset": 1722566818678,
|
"asset": 1723022484332,
|
||||||
"meta": 1722566819932,
|
"meta": 1723022484835,
|
||||||
"relativePath": "Script\\Load.ts"
|
"relativePath": "Script\\Load.ts"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -13,13 +13,13 @@
|
||||||
"type": "dock-h",
|
"type": "dock-h",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"width": 207.28125,
|
"width": 204.5625,
|
||||||
"height": 571,
|
"height": 556.3333740234375,
|
||||||
"type": "dock-v",
|
"type": "dock-v",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"width": 207.28125,
|
"width": 204.5625,
|
||||||
"height": 284,
|
"height": 276.66668701171875,
|
||||||
"type": "panel",
|
"type": "panel",
|
||||||
"active": 0,
|
"active": 0,
|
||||||
"children": [
|
"children": [
|
||||||
|
@ -27,8 +27,8 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"width": 207.28125,
|
"width": 204.5625,
|
||||||
"height": 284,
|
"height": 276.66668701171875,
|
||||||
"type": "panel",
|
"type": "panel",
|
||||||
"active": 0,
|
"active": 0,
|
||||||
"children": [
|
"children": [
|
||||||
|
@ -38,8 +38,8 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"width": 758.3333740234375,
|
"width": 750.0729370117188,
|
||||||
"height": 571,
|
"height": 556.3333740234375,
|
||||||
"type": "panel",
|
"type": "panel",
|
||||||
"active": 0,
|
"active": 0,
|
||||||
"children": [
|
"children": [
|
||||||
|
@ -47,8 +47,8 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"width": 308.38543701171875,
|
"width": 305.3645935058594,
|
||||||
"height": 571,
|
"height": 556.3333740234375,
|
||||||
"type": "panel",
|
"type": "panel",
|
||||||
"active": 0,
|
"active": 0,
|
||||||
"children": [
|
"children": [
|
||||||
|
@ -67,7 +67,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
" common-asset-worker-worker": {},
|
" common-asset-worker-worker": {},
|
||||||
"window-1722566811998": {}
|
"window-1723022487955": {}
|
||||||
},
|
},
|
||||||
"panels": {
|
"panels": {
|
||||||
"builder": {
|
"builder": {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"last-edit": "92833b7e-ff21-4bab-84ea-c39509a4d2b1",
|
"last-edit": "de4a2193-73c2-43cd-8359-363f654e759f",
|
||||||
"recent-items": [
|
"recent-items": [
|
||||||
"40ba7e70-1826-4aa1-92f3-aa63ae39294b",
|
"40ba7e70-1826-4aa1-92f3-aa63ae39294b",
|
||||||
"4b9c5a7e-c645-48a4-9aca-5df381ce4ef5",
|
"4b9c5a7e-c645-48a4-9aca-5df381ce4ef5",
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
"01db2f22-3239-47f4-b3f3-600dbd219147",
|
"01db2f22-3239-47f4-b3f3-600dbd219147",
|
||||||
"d844f3bb-a888-4201-be47-41b21981a214",
|
"d844f3bb-a888-4201-be47-41b21981a214",
|
||||||
"90e4d14c-de00-4990-bcb9-4b5eb0f9c60a",
|
"90e4d14c-de00-4990-bcb9-4b5eb0f9c60a",
|
||||||
"de4a2193-73c2-43cd-8359-363f654e759f",
|
"92833b7e-ff21-4bab-84ea-c39509a4d2b1",
|
||||||
"92833b7e-ff21-4bab-84ea-c39509a4d2b1"
|
"de4a2193-73c2-43cd-8359-363f654e759f"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"last-module-event-record-time": 1722332027358,
|
"last-module-event-record-time": 1723022490215,
|
||||||
"group-list": [
|
"group-list": [
|
||||||
"default"
|
"default"
|
||||||
],
|
],
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
{"version":"1.0.8","stats":{"C:/Work/Project/FlyUp/temp/quick-scripts/src/__qc_index__.js":"2024-08-02T02:45:58.859Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js":"2024-08-02T02:45:58.807Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/tool/GameTool.js":"2024-08-02T02:45:58.802Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/GameScene.js":"2024-08-02T02:45:58.820Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/ListView/ItemRender.js":"2024-08-02T02:45:58.819Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/crypto/HttpUtil.js":"2024-08-02T02:45:58.813Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/GameOver.js":"2024-08-02T02:45:58.804Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/GameData.js":"2024-08-02T02:45:58.827Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/Load.js":"2024-08-02T02:45:58.799Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/GameManager.js":"2024-08-02T02:45:58.814Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/Player.js":"2024-08-02T02:45:58.808Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/tool/Notification.js":"2024-08-02T02:45:58.817Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/Block.js":"2024-08-02T02:45:58.801Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/RankManager.js":"2024-08-02T02:45:58.811Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/tool/Storage.js":"2024-08-02T02:45:58.823Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/ListView/List.js":"2024-08-02T02:45:58.821Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/tool/AudioManager.js":"2024-08-02T02:45:58.805Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/crypto/crypto-js.min.js":"2024-08-02T02:45:58.825Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/Camera.js":"2024-08-02T02:45:58.816Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/tool/share.js":"2024-08-02T02:45:58.810Z"}}
|
{"version":"1.0.8","stats":{"C:/Work/Project/FlyUp/temp/quick-scripts/src/__qc_index__.js":"2024-08-07T09:17:50.348Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/ListView/ItemRender.js":"2024-08-07T09:17:50.316Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/crypto/HttpUtil.js":"2024-08-07T09:17:50.312Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/GameScene.js":"2024-08-07T09:17:50.317Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/GameOver.js":"2024-08-07T09:17:50.305Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/GameManager.js":"2024-08-07T09:17:50.313Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/tool/Notification.js":"2024-08-07T09:17:50.314Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js":"2024-08-07T09:17:50.306Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/GameData.js":"2024-08-07T09:17:50.320Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/Player.js":"2024-08-07T09:17:50.308Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/Load.js":"2024-08-07T09:17:50.301Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/Block.js":"2024-08-07T09:17:50.302Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/RankManager.js":"2024-08-07T09:17:50.311Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/tool/share.js":"2024-08-07T09:17:50.310Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/ListView/List.js":"2024-08-07T09:17:50.317Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/tool/Storage.js":"2024-08-07T09:17:50.320Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/tool/GameTool.js":"2024-08-07T09:17:50.304Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/Camera.js":"2024-08-07T09:17:50.314Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/crypto/crypto-js.min.js":"2024-08-07T09:17:50.320Z","C:/Work/Project/FlyUp/temp/quick-scripts/src/assets/Script/tool/AudioManager.js":"2024-08-07T09:17:50.305Z"}}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
(function () {
|
(function () {
|
||||||
var scripts = [{"deps":{"./assets/Script/GameData":7,"./assets/Script/GameManager":9,"./assets/Script/GameOver":6,"./assets/Script/GameScene":3,"./assets/Script/Load":8,"./assets/Script/Player":10,"./assets/Script/RankManager":13,"./assets/Script/Block":12,"./assets/Script/ListView/List":15,"./assets/Script/ListView/ItemRender":4,"./assets/Script/crypto/crypto-js.min":17,"./assets/Script/crypto/HttpUtil":5,"./assets/Script/tool/GameTool":2,"./assets/Script/tool/Notification":11,"./assets/Script/tool/Storage":14,"./assets/Script/tool/share":19,"./assets/Script/tool/AudioManager":16,"./assets/migration/use_v2.1-2.2.1_cc.Toggle_event":1,"./assets/Script/Camera":18},"path":"preview-scripts/__qc_index__.js"},{"deps":{},"path":"preview-scripts/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js"},{"deps":{"../GameData":7,"../crypto/HttpUtil":5,"./Storage":14},"path":"preview-scripts/assets/Script/tool/GameTool.js"},{"deps":{},"path":"preview-scripts/assets/Script/GameScene.js"},{"deps":{},"path":"preview-scripts/assets/Script/ListView/ItemRender.js"},{"deps":{"../GameData":7,"./crypto-js.min.js":17},"path":"preview-scripts/assets/Script/crypto/HttpUtil.js"},{"deps":{},"path":"preview-scripts/assets/Script/GameOver.js"},{"deps":{},"path":"preview-scripts/assets/Script/GameData.js"},{"deps":{"./GameData":7,"./tool/share":19,"./tool/GameTool":2},"path":"preview-scripts/assets/Script/Load.js"},{"deps":{"./GameData":7,"./tool/GameTool":2,"./tool/Notification":11},"path":"preview-scripts/assets/Script/GameManager.js"},{"deps":{"./GameData":7,"./GameManager":9,"./tool/AudioManager":16,"./tool/Notification":11},"path":"preview-scripts/assets/Script/Player.js"},{"deps":{},"path":"preview-scripts/assets/Script/tool/Notification.js"},{"deps":{"./GameData":7,"./GameManager":9,"./tool/Notification":11},"path":"preview-scripts/assets/Script/Block.js"},{"deps":{"./GameData":7,"./ListView/List":15,"./crypto/HttpUtil":5,"./tool/GameTool":2},"path":"preview-scripts/assets/Script/RankManager.js"},{"deps":{},"path":"preview-scripts/assets/Script/tool/Storage.js"},{"deps":{"./ItemRender":4},"path":"preview-scripts/assets/Script/ListView/List.js"},{"deps":{},"path":"preview-scripts/assets/Script/tool/AudioManager.js"},{"deps":{},"path":"preview-scripts/assets/Script/crypto/crypto-js.min.js"},{"deps":{"./GameData":7,"./GameManager":9,"./tool/Notification":11},"path":"preview-scripts/assets/Script/Camera.js"},{"deps":{"../crypto/HttpUtil":5,"../GameData":7},"path":"preview-scripts/assets/Script/tool/share.js"}];
|
var scripts = [{"deps":{"./assets/Script/GameData":8,"./assets/Script/GameManager":5,"./assets/Script/GameOver":4,"./assets/Script/GameScene":3,"./assets/Script/Load":10,"./assets/Script/Player":9,"./assets/Script/RankManager":12,"./assets/Script/Block":11,"./assets/Script/ListView/List":14,"./assets/Script/ListView/ItemRender":1,"./assets/Script/crypto/crypto-js.min":18,"./assets/Script/crypto/HttpUtil":2,"./assets/Script/tool/GameTool":16,"./assets/Script/tool/Notification":6,"./assets/Script/tool/Storage":15,"./assets/Script/tool/share":13,"./assets/Script/tool/AudioManager":19,"./assets/migration/use_v2.1-2.2.1_cc.Toggle_event":7,"./assets/Script/Camera":17},"path":"preview-scripts/__qc_index__.js"},{"deps":{},"path":"preview-scripts/assets/Script/ListView/ItemRender.js"},{"deps":{"../GameData":8,"./crypto-js.min.js":18},"path":"preview-scripts/assets/Script/crypto/HttpUtil.js"},{"deps":{},"path":"preview-scripts/assets/Script/GameScene.js"},{"deps":{},"path":"preview-scripts/assets/Script/GameOver.js"},{"deps":{"./GameData":8,"./tool/Notification":6,"./tool/GameTool":16},"path":"preview-scripts/assets/Script/GameManager.js"},{"deps":{},"path":"preview-scripts/assets/Script/tool/Notification.js"},{"deps":{},"path":"preview-scripts/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js"},{"deps":{},"path":"preview-scripts/assets/Script/GameData.js"},{"deps":{"./GameData":8,"./GameManager":5,"./tool/Notification":6,"./tool/AudioManager":19},"path":"preview-scripts/assets/Script/Player.js"},{"deps":{"./GameData":8,"./tool/share":13,"./tool/GameTool":16},"path":"preview-scripts/assets/Script/Load.js"},{"deps":{"./GameData":8,"./GameManager":5,"./tool/Notification":6},"path":"preview-scripts/assets/Script/Block.js"},{"deps":{"./GameData":8,"./ListView/List":14,"./crypto/HttpUtil":2,"./tool/GameTool":16},"path":"preview-scripts/assets/Script/RankManager.js"},{"deps":{"../crypto/HttpUtil":2,"../GameData":8},"path":"preview-scripts/assets/Script/tool/share.js"},{"deps":{"./ItemRender":1},"path":"preview-scripts/assets/Script/ListView/List.js"},{"deps":{},"path":"preview-scripts/assets/Script/tool/Storage.js"},{"deps":{"../GameData":8,"../crypto/HttpUtil":2,"./Storage":15},"path":"preview-scripts/assets/Script/tool/GameTool.js"},{"deps":{"./GameData":8,"./GameManager":5,"./tool/Notification":6},"path":"preview-scripts/assets/Script/Camera.js"},{"deps":{},"path":"preview-scripts/assets/Script/crypto/crypto-js.min.js"},{"deps":{},"path":"preview-scripts/assets/Script/tool/AudioManager.js"}];
|
||||||
var entries = ["preview-scripts/__qc_index__.js"];
|
var entries = ["preview-scripts/__qc_index__.js"];
|
||||||
var bundleScript = 'preview-scripts/__qc_bundle__.js';
|
var bundleScript = 'preview-scripts/__qc_bundle__.js';
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -75,7 +75,9 @@ var GameData = /** @class */ (function (_super) {
|
||||||
difficultyMax: 1,
|
difficultyMax: 1,
|
||||||
score: 0,
|
score: 0,
|
||||||
success: true,
|
success: true,
|
||||||
probation: true //试用期
|
probation: true,
|
||||||
|
afkCount: 0,
|
||||||
|
isAFK: false //是否挂机
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
GameData.prototype.CLICK_init = function () {
|
GameData.prototype.CLICK_init = function () {
|
||||||
|
@ -97,6 +99,7 @@ var GameData = /** @class */ (function (_super) {
|
||||||
fakeSpeed: 0,
|
fakeSpeed: 0,
|
||||||
speed: 0,
|
speed: 0,
|
||||||
round: 0,
|
round: 0,
|
||||||
|
isAFK: false //是否挂机
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
GameData.prototype.LEVEL_init = function () {
|
GameData.prototype.LEVEL_init = function () {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -645,6 +645,7 @@ var GameManager = /** @class */ (function (_super) {
|
||||||
GameData_1.default._instance.CLICK_DATA.timer = this.countTime;
|
GameData_1.default._instance.CLICK_DATA.timer = this.countTime;
|
||||||
GameData_1.default._instance.CLICK_DATA.level = this.round;
|
GameData_1.default._instance.CLICK_DATA.level = this.round;
|
||||||
GameData_1.default._instance.CLICK_DATA.round = this.level;
|
GameData_1.default._instance.CLICK_DATA.round = this.level;
|
||||||
|
GameData_1.default._instance.CLICK_DATA.isAFK = GameData_1.default._instance.GM_INFO.isAFK;
|
||||||
//CLICK_DATA 数据处理完毕后调用上传接口 上传接口内CLICK_DATA不做改变
|
//CLICK_DATA 数据处理完毕后调用上传接口 上传接口内CLICK_DATA不做改变
|
||||||
GameTool_1.GameTool.setGameData();
|
GameTool_1.GameTool.setGameData();
|
||||||
};
|
};
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -304,6 +304,7 @@ var NewClass = /** @class */ (function (_super) {
|
||||||
this.block = other.node;
|
this.block = other.node;
|
||||||
if (this.block.name != "block13") {
|
if (this.block.name != "block13") {
|
||||||
this.block.getComponent("Block").setScore(number);
|
this.block.getComponent("Block").setScore(number);
|
||||||
|
GameData_1.default._instance.GM_INFO.afkCount = 0;
|
||||||
Notification_1.Notification.emit("setData", null);
|
Notification_1.Notification.emit("setData", null);
|
||||||
}
|
}
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
|
@ -342,6 +343,15 @@ var NewClass = /** @class */ (function (_super) {
|
||||||
GameData_1.default._instance.CLICK_DATA.combo = 0;
|
GameData_1.default._instance.CLICK_DATA.combo = 0;
|
||||||
GameData_1.default._instance.CLICK_DATA.accuracy = 0;
|
GameData_1.default._instance.CLICK_DATA.accuracy = 0;
|
||||||
GameData_1.default._instance.CLICK_DATA.percent = -1;
|
GameData_1.default._instance.CLICK_DATA.percent = -1;
|
||||||
|
if (GameData_1.default._instance.CLICK_DATA.jumps == 0 && GameManager_1.default._instance.round == 1) {
|
||||||
|
GameData_1.default._instance.GM_INFO.afkCount += 1;
|
||||||
|
if (GameData_1.default._instance.GM_INFO.afkCount == 3) {
|
||||||
|
GameData_1.default._instance.GM_INFO.isAFK = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
GameData_1.default._instance.GM_INFO.afkCount = 0;
|
||||||
|
}
|
||||||
Notification_1.Notification.emit("setData", null);
|
Notification_1.Notification.emit("setData", null);
|
||||||
this.double = false;
|
this.double = false;
|
||||||
GameData_1.default._instance.LEVEL_INFO.doubleSuccess = 3;
|
GameData_1.default._instance.LEVEL_INFO.doubleSuccess = 3;
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user