太阳,更新了一版模板化

This commit is contained in:
YZ\249929363 2024-06-21 18:41:47 +08:00
parent 5dd7d5f4c2
commit 008804d449
27 changed files with 2088 additions and 2086 deletions

View File

@ -55,35 +55,37 @@ export class GameConfig {
} }
static init(){ static init(){
this.GM_INFO_init();
this.CLICK_init();
this.LEVEL_INFO_init();
var self = this;
cc.resources.load('Json/GM_INFO', (err: any, res: cc.JsonAsset) => { cc.resources.load('Json/GM_INFO', (err: any, res: cc.JsonAsset) => {
if (err) { if (err) {
this.GM_INFO_init(); self.Authentication();
this.Authentication();
return; return;
} }
let jsonData: object = res.json!; let jsonData: object = res.json!;
this.GM_INFO = jsonData["data"]; self.GM_INFO = jsonData["data"];
this.Authentication(); self.Authentication();
}) })
cc.resources.load('Json/CLICK_DATA', (err: any, res: cc.JsonAsset) => { cc.resources.load('Json/CLICK_DATA', (err: any, res: cc.JsonAsset) => {
if (err) { if (err) {
this.CLICK_init();
return; return;
} }
let jsonData: object = res.json!; let jsonData: object = res.json!;
this.CLICK_DATA = jsonData["data"]; self.CLICK_DATA = jsonData["data"];
}) })
cc.resources.load('Json/LEVEL_INFO', (err: any, res: cc.JsonAsset) => { cc.resources.load('Json/LEVEL_INFO', (err: any, res: cc.JsonAsset) => {
if (err) { if (err) {
this.LEVEL_INFO_init();
return; return;
} }
let jsonData: object = res.json!; let jsonData: object = res.json!;
this.LEVEL_INFO = jsonData["data"]; self.LEVEL_INFO = jsonData["data"];
}) })
//GAME_DATA 废弃了,暂时不删除以防后面修改回 一整局传一次 //GAME_DATA 废弃了,暂时不删除以防后面修改回 一整局传一次
this.GAME_DATA = [ self.GAME_DATA = [
] ]
} }

View File

@ -33,7 +33,7 @@ var GameTool = {
"data": data "data": data
}; };
// console.log("上传数据:") console.log("上传数据:",postData);
cc.fx.HttpUtil.uploadUserLogData(postData,function(){}) cc.fx.HttpUtil.uploadUserLogData(postData,function(){})
}, },
//上传排行榜 type为1 //上传排行榜 type为1

View File

@ -3,7 +3,7 @@
"mean_Time": 0, "mean_Time": 0,
"total": 0, "total": 0,
"currSeed": 203213, "currSeed": 203213,
"gameId": 100009, "gameId": "100009",
"userId": 0, "userId": 0,
"guide": true, "guide": true,
"url": "http://api.sparkus.cn", "url": "http://api.sparkus.cn",

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -137,9 +137,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.52d49.js" charset="utf-8"></script> <script src="src/settings.64ad6.js" charset="utf-8"></script>
<script src="main.23980.js" charset="utf-8"></script> <script src="main.90bc5.js" charset="utf-8"></script>
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script> <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>

View File

@ -117,7 +117,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.52d49.js'); require('src/settings.64ad6.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');
@ -125,7 +125,7 @@ if (window.jsb) {
require('jsb-adapter/engine/index.js'); require('jsb-adapter/engine/index.js');
} }
else { else {
require('src/settings.52d49.js'); require('src/settings.64ad6.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');

View File

@ -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:"52d36",resources:"c9e69",main:"3383c"}}; 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:"52d36",resources:"361a9",main:"b4ae4"}};

View File

@ -8,7 +8,7 @@
"mean_Time": 0, "mean_Time": 0,
"total": 0, "total": 0,
"currSeed": 203213, "currSeed": 203213,
"gameId": 100009, "gameId": "100009",
"userId": 0, "userId": 0,
"guide": true, "guide": true,
"url": "http://api.sparkus.cn", "url": "http://api.sparkus.cn",

View File

@ -37,7 +37,7 @@ var GameTool = {
"matchId": matchId, "matchId": matchId,
"data": data "data": data
}; };
// console.log("上传数据:") console.log("上传数据:", postData);
cc.fx.HttpUtil.uploadUserLogData(postData, function () { }); cc.fx.HttpUtil.uploadUserLogData(postData, function () { });
}, },
//上传排行榜 type为1 //上传排行榜 type为1

File diff suppressed because one or more lines are too long

View File

@ -27,35 +27,35 @@ var GameConfig = /** @class */ (function () {
configurable: true configurable: true
}); });
GameConfig.init = function () { GameConfig.init = function () {
var _this = this; this.GM_INFO_init();
this.CLICK_init();
this.LEVEL_INFO_init();
var self = this;
cc.resources.load('Json/GM_INFO', function (err, res) { cc.resources.load('Json/GM_INFO', function (err, res) {
if (err) { if (err) {
_this.GM_INFO_init(); self.Authentication();
_this.Authentication();
return; return;
} }
var jsonData = res.json; var jsonData = res.json;
_this.GM_INFO = jsonData["data"]; self.GM_INFO = jsonData["data"];
_this.Authentication(); self.Authentication();
}); });
cc.resources.load('Json/CLICK_DATA', function (err, res) { cc.resources.load('Json/CLICK_DATA', function (err, res) {
if (err) { if (err) {
_this.CLICK_init();
return; return;
} }
var jsonData = res.json; var jsonData = res.json;
_this.CLICK_DATA = jsonData["data"]; self.CLICK_DATA = jsonData["data"];
}); });
cc.resources.load('Json/LEVEL_INFO', function (err, res) { cc.resources.load('Json/LEVEL_INFO', function (err, res) {
if (err) { if (err) {
_this.LEVEL_INFO_init();
return; return;
} }
var jsonData = res.json; var jsonData = res.json;
_this.LEVEL_INFO = jsonData["data"]; self.LEVEL_INFO = jsonData["data"];
}); });
//GAME_DATA 废弃了,暂时不删除以防后面修改回 一整局传一次 //GAME_DATA 废弃了,暂时不删除以防后面修改回 一整局传一次
this.GAME_DATA = []; self.GAME_DATA = [];
}; };
//数据备用 //数据备用
GameConfig.GM_INFO_init = function () { GameConfig.GM_INFO_init = function () {

File diff suppressed because one or more lines are too long

View File

@ -370,8 +370,8 @@
"relativePath": "Script\\module\\Crypto\\HttpUtil.ts" "relativePath": "Script\\module\\Crypto\\HttpUtil.ts"
}, },
"9c08062d-4cf1-4b6e-a8ba-4a3881cc7e7d": { "9c08062d-4cf1-4b6e-a8ba-4a3881cc7e7d": {
"asset": 1718622363469, "asset": 1718958796311,
"meta": 1718622363475, "meta": 1718958796317,
"relativePath": "Scene\\LoadScene.fire" "relativePath": "Scene\\LoadScene.fire"
}, },
"805c69df-dfdf-4759-97ae-5a7341f424c7": { "805c69df-dfdf-4759-97ae-5a7341f424c7": {
@ -384,11 +384,6 @@
"meta": 1718607561362, "meta": 1718607561362,
"relativePath": "Script\\module\\RankList\\ItemRender.ts" "relativePath": "Script\\module\\RankList\\ItemRender.ts"
}, },
"43bfc27a-ff6e-45b3-87c7-504d0f781397": {
"asset": 1718607249147,
"meta": 1718607561393,
"relativePath": "Script\\module\\Tool\\GameTool.ts"
},
"e74a9f7d-2031-4e69-bcb2-9998174088b2": { "e74a9f7d-2031-4e69-bcb2-9998174088b2": {
"asset": 1718607291362, "asset": 1718607291362,
"meta": 1718607561414, "meta": 1718607561414,
@ -404,11 +399,6 @@
"meta": 1718612898273, "meta": 1718612898273,
"relativePath": "resources\\Json" "relativePath": "resources\\Json"
}, },
"2d69a479-18ec-4787-b35f-e9a9b3247435": {
"asset": 1718613751724,
"meta": 1718613773369,
"relativePath": "resources\\Json\\GM_INFO.json"
},
"e1d57e63-4f2f-467d-9c55-0a889d5533a8": { "e1d57e63-4f2f-467d-9c55-0a889d5533a8": {
"asset": 1718613823190, "asset": 1718613823190,
"meta": 1718613998653, "meta": 1718613998653,
@ -421,427 +411,427 @@
}, },
"9836134e-b892-4283-b6b2-78b5acf3ed45": { "9836134e-b892-4283-b6b2-78b5acf3ed45": {
"asset": 1714966328642, "asset": 1714966328642,
"meta": 1718622356836, "meta": 1718958547847,
"relativePath": "effects" "relativePath": "effects"
}, },
"abc2cb62-7852-4525-a90d-d474487b88f2": { "abc2cb62-7852-4525-a90d-d474487b88f2": {
"asset": 1714966328642, "asset": 1714966328642,
"meta": 1718622356954, "meta": 1718958547969,
"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": 1718622357004, "meta": 1718958548015,
"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": 1718622357018, "meta": 1718958548027,
"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": 1718622357027, "meta": 1718958548034,
"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": 1718622357065, "meta": 1718958548067,
"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": 1718622356836, "meta": 1718958547848,
"relativePath": "image" "relativePath": "image"
}, },
"5c3eedba-6c41-4c0c-9ba7-d91f813cbd1c": { "5c3eedba-6c41-4c0c-9ba7-d91f813cbd1c": {
"asset": 1714966328721, "asset": 1714966328721,
"meta": 1718622356837, "meta": 1718958547849,
"relativePath": "materials" "relativePath": "materials"
}, },
"fc09f9bd-2cce-4605-b630-8145ef809ed6": { "fc09f9bd-2cce-4605-b630-8145ef809ed6": {
"asset": 1714966328721, "asset": 1714966328721,
"meta": 1718622356838, "meta": 1718958547850,
"relativePath": "misc" "relativePath": "misc"
}, },
"4bab67cb-18e6-4099-b840-355f0473f890": { "4bab67cb-18e6-4099-b840-355f0473f890": {
"asset": 1714966328689, "asset": 1714966328689,
"meta": 1718622357170, "meta": 1718958548158,
"relativePath": "image\\default_scrollbar_bg.png" "relativePath": "image\\default_scrollbar_bg.png"
}, },
"db019bf7-f71c-4111-98cf-918ea180cb48": { "db019bf7-f71c-4111-98cf-918ea180cb48": {
"asset": 1714966328737, "asset": 1714966328737,
"meta": 1718622356839, "meta": 1718958547851,
"relativePath": "model" "relativePath": "model"
}, },
"e851e89b-faa2-4484-bea6-5c01dd9f06e2": { "e851e89b-faa2-4484-bea6-5c01dd9f06e2": {
"asset": 1714966328658, "asset": 1714966328658,
"meta": 1718622357120, "meta": 1718958548125,
"relativePath": "image\\default_btn_normal.png" "relativePath": "image\\default_btn_normal.png"
}, },
"e39e96e6-6f6e-413f-bcf1-ac7679bb648a": { "e39e96e6-6f6e-413f-bcf1-ac7679bb648a": {
"asset": 1714966328737, "asset": 1714966328737,
"meta": 1718622357138, "meta": 1718958548130,
"relativePath": "model\\prefab" "relativePath": "model\\prefab"
}, },
"99170b0b-d210-46f1-b213-7d9e3f23098a": { "99170b0b-d210-46f1-b213-7d9e3f23098a": {
"asset": 1714966328673, "asset": 1714966328673,
"meta": 1718622357131, "meta": 1718958548155,
"relativePath": "image\\default_progressbar_bg.png" "relativePath": "image\\default_progressbar_bg.png"
}, },
"6e056173-d285-473c-b206-40a7fff5386e": { "6e056173-d285-473c-b206-40a7fff5386e": {
"asset": 1714966328689, "asset": 1714966328689,
"meta": 1718622357176, "meta": 1718958548163,
"relativePath": "image\\default_sprite.png" "relativePath": "image\\default_sprite.png"
}, },
"617323dd-11f4-4dd3-8eec-0caf6b3b45b9": { "617323dd-11f4-4dd3-8eec-0caf6b3b45b9": {
"asset": 1714966328689, "asset": 1714966328689,
"meta": 1718622357171, "meta": 1718958548166,
"relativePath": "image\\default_scrollbar_vertical_bg.png" "relativePath": "image\\default_scrollbar_vertical_bg.png"
}, },
"b43ff3c2-02bb-4874-81f7-f2dea6970f18": { "b43ff3c2-02bb-4874-81f7-f2dea6970f18": {
"asset": 1714966328658, "asset": 1714966328658,
"meta": 1718622357168, "meta": 1718958548113,
"relativePath": "image\\default_btn_pressed.png" "relativePath": "image\\default_btn_pressed.png"
}, },
"71561142-4c83-4933-afca-cb7a17f67053": { "71561142-4c83-4933-afca-cb7a17f67053": {
"asset": 1714966328658, "asset": 1714966328658,
"meta": 1718622357137, "meta": 1718958548120,
"relativePath": "image\\default_btn_disabled.png" "relativePath": "image\\default_btn_disabled.png"
}, },
"d81ec8ad-247c-4e62-aa3c-d35c4193c7af": { "d81ec8ad-247c-4e62-aa3c-d35c4193c7af": {
"asset": 1714966328673, "asset": 1714966328673,
"meta": 1718622357122, "meta": 1718958548162,
"relativePath": "image\\default_panel.png" "relativePath": "image\\default_panel.png"
}, },
"cfef78f1-c8df-49b7-8ed0-4c953ace2621": { "cfef78f1-c8df-49b7-8ed0-4c953ace2621": {
"asset": 1714966328673, "asset": 1714966328673,
"meta": 1718622357124, "meta": 1718958548128,
"relativePath": "image\\default_progressbar.png" "relativePath": "image\\default_progressbar.png"
}, },
"f6e6dd15-71d1-4ffe-ace7-24fd39942c05": { "f6e6dd15-71d1-4ffe-ace7-24fd39942c05": {
"asset": 1714966328752, "asset": 1714966328752,
"meta": 1718622356840, "meta": 1718958547852,
"relativePath": "obsolete" "relativePath": "obsolete"
}, },
"edd215b9-2796-4a05-aaf5-81f96c9281ce": { "edd215b9-2796-4a05-aaf5-81f96c9281ce": {
"asset": 1714966328658, "asset": 1714966328658,
"meta": 1718622357167, "meta": 1718958548110,
"relativePath": "image\\default_editbox_bg.png" "relativePath": "image\\default_editbox_bg.png"
}, },
"c4480a0a-6ac5-443f-8b40-361a14257fc8": { "c4480a0a-6ac5-443f-8b40-361a14257fc8": {
"asset": 1714966328706, "asset": 1714966328706,
"meta": 1718622357605, "meta": 1718958548444,
"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": 1718622356841, "meta": 1718958547853,
"relativePath": "particle" "relativePath": "particle"
}, },
"567dcd80-8bf4-4535-8a5a-313f1caf078a": { "567dcd80-8bf4-4535-8a5a-313f1caf078a": {
"asset": 1714966328673, "asset": 1714966328673,
"meta": 1718622357139, "meta": 1718958548161,
"relativePath": "image\\default_radio_button_off.png" "relativePath": "image\\default_radio_button_off.png"
}, },
"a87cc147-01b2-43f8-8e42-a7ca90b0c757": { "a87cc147-01b2-43f8-8e42-a7ca90b0c757": {
"asset": 1714966328721, "asset": 1714966328721,
"meta": 1718622357515, "meta": 1718958548377,
"relativePath": "model\\prefab\\box.prefab" "relativePath": "model\\prefab\\box.prefab"
}, },
"600301aa-3357-4a10-b086-84f011fa32ba": { "600301aa-3357-4a10-b086-84f011fa32ba": {
"asset": 1714966328642, "asset": 1714966328642,
"meta": 1718622357127, "meta": 1718958548117,
"relativePath": "image\\default-particle.png" "relativePath": "image\\default-particle.png"
}, },
"ae6c6c98-11e4-452f-8758-75f5c6a56e83": { "ae6c6c98-11e4-452f-8758-75f5c6a56e83": {
"asset": 1714966328831, "asset": 1714966328831,
"meta": 1718622356842, "meta": 1718958547853,
"relativePath": "prefab" "relativePath": "prefab"
}, },
"fe1417b6-fe6b-46a4-ae7c-9fd331f33a2a": { "fe1417b6-fe6b-46a4-ae7c-9fd331f33a2a": {
"asset": 1714966328737, "asset": 1714966328737,
"meta": 1718622357536, "meta": 1718958548379,
"relativePath": "model\\prefab\\capsule.prefab" "relativePath": "model\\prefab\\capsule.prefab"
}, },
"9d60001f-b5f4-4726-a629-2659e3ded0b8": { "9d60001f-b5f4-4726-a629-2659e3ded0b8": {
"asset": 1714966328673, "asset": 1714966328673,
"meta": 1718622357134, "meta": 1718958548115,
"relativePath": "image\\default_radio_button_on.png" "relativePath": "image\\default_radio_button_on.png"
}, },
"b5fc2cf2-7942-483d-be1f-bbeadc4714ad": { "b5fc2cf2-7942-483d-be1f-bbeadc4714ad": {
"asset": 1714966328737, "asset": 1714966328737,
"meta": 1718622357540, "meta": 1718958548383,
"relativePath": "model\\prefab\\cone.prefab" "relativePath": "model\\prefab\\cone.prefab"
}, },
"3f376125-a699-40ca-ad05-04d662eaa1f2": { "3f376125-a699-40ca-ad05-04d662eaa1f2": {
"asset": 1714966328737, "asset": 1714966328737,
"meta": 1718622357533, "meta": 1718958548380,
"relativePath": "model\\prefab\\plane.prefab" "relativePath": "model\\prefab\\plane.prefab"
}, },
"0291c134-b3da-4098-b7b5-e397edbe947f": { "0291c134-b3da-4098-b7b5-e397edbe947f": {
"asset": 1714966328689, "asset": 1714966328689,
"meta": 1718622357165, "meta": 1718958548159,
"relativePath": "image\\default_scrollbar.png" "relativePath": "image\\default_scrollbar.png"
}, },
"1c5e4038-953a-44c2-b620-0bbfc6170477": { "1c5e4038-953a-44c2-b620-0bbfc6170477": {
"asset": 1714966328737, "asset": 1714966328737,
"meta": 1718622357531, "meta": 1718958548385,
"relativePath": "model\\prefab\\cylinder.prefab" "relativePath": "model\\prefab\\cylinder.prefab"
}, },
"6c9ef10d-b479-420b-bfe6-39cdda6a8ae0": { "6c9ef10d-b479-420b-bfe6-39cdda6a8ae0": {
"asset": 1714966328737, "asset": 1714966328737,
"meta": 1718622357523, "meta": 1718958548387,
"relativePath": "model\\prefab\\quad.prefab" "relativePath": "model\\prefab\\quad.prefab"
}, },
"d6d3ca85-4681-47c1-b5dd-d036a9d39ea2": { "d6d3ca85-4681-47c1-b5dd-d036a9d39ea2": {
"asset": 1714966328689, "asset": 1714966328689,
"meta": 1718622357174, "meta": 1718958548156,
"relativePath": "image\\default_scrollbar_vertical.png" "relativePath": "image\\default_scrollbar_vertical.png"
}, },
"de510076-056b-484f-b94c-83bef217d0e1": { "de510076-056b-484f-b94c-83bef217d0e1": {
"asset": 1714966328737, "asset": 1714966328737,
"meta": 1718622357528, "meta": 1718958548381,
"relativePath": "model\\prefab\\torus.prefab" "relativePath": "model\\prefab\\torus.prefab"
}, },
"2d9a4b85-b0ab-4c46-84c5-18f393ab2058": { "2d9a4b85-b0ab-4c46-84c5-18f393ab2058": {
"asset": 1714966328737, "asset": 1714966328737,
"meta": 1718622357519, "meta": 1718958548391,
"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": 1718622357178, "meta": 1718958548168,
"relativePath": "image\\default_sprite_splash.png" "relativePath": "image\\default_sprite_splash.png"
}, },
"897ef7a1-4860-4f64-968d-f5924b18668a": { "897ef7a1-4860-4f64-968d-f5924b18668a": {
"asset": 1714966328752, "asset": 1714966328752,
"meta": 1718622357185, "meta": 1718958548176,
"relativePath": "prefab\\2d-camera.prefab" "relativePath": "prefab\\2d-camera.prefab"
}, },
"70d7cdb0-04cd-41bb-9480-c06a4785f386": { "70d7cdb0-04cd-41bb-9480-c06a4785f386": {
"asset": 1714966328768, "asset": 1714966328768,
"meta": 1718622357187, "meta": 1718958548173,
"relativePath": "prefab\\3d-camera.prefab" "relativePath": "prefab\\3d-camera.prefab"
}, },
"a3ee0214-b432-4865-9666-4a3211814282": { "a3ee0214-b432-4865-9666-4a3211814282": {
"asset": 1714966328800, "asset": 1714966328800,
"meta": 1718622357188, "meta": 1718958548176,
"relativePath": "prefab\\light" "relativePath": "prefab\\light"
}, },
"ed88f13d-fcad-4848-aa35-65a2cb973584": { "ed88f13d-fcad-4848-aa35-65a2cb973584": {
"asset": 1714966328768, "asset": 1714966328768,
"meta": 1718622357192, "meta": 1718958548178,
"relativePath": "prefab\\3d-stage.prefab" "relativePath": "prefab\\3d-stage.prefab"
}, },
"70bbeb73-6dc2-4ee4-8faf-76b3a0e34ec4": { "70bbeb73-6dc2-4ee4-8faf-76b3a0e34ec4": {
"asset": 1714966328768, "asset": 1714966328768,
"meta": 1718622357190, "meta": 1718958548183,
"relativePath": "prefab\\3d-particle.prefab" "relativePath": "prefab\\3d-particle.prefab"
}, },
"972b9a4d-47ee-4c74-b5c3-61d8a69bc29f": { "972b9a4d-47ee-4c74-b5c3-61d8a69bc29f": {
"asset": 1714966328768, "asset": 1714966328768,
"meta": 1718622357195, "meta": 1718958548180,
"relativePath": "prefab\\button.prefab" "relativePath": "prefab\\button.prefab"
}, },
"2c937608-2562-40ea-b264-7395df6f0cea": { "2c937608-2562-40ea-b264-7395df6f0cea": {
"asset": 1714966328768, "asset": 1714966328768,
"meta": 1718622357197, "meta": 1718958548182,
"relativePath": "prefab\\canvas.prefab" "relativePath": "prefab\\canvas.prefab"
}, },
"61aeb05b-3b32-452b-8eed-2b76deeed554": { "61aeb05b-3b32-452b-8eed-2b76deeed554": {
"asset": 1714966328783, "asset": 1714966328783,
"meta": 1718622357200, "meta": 1718958548186,
"relativePath": "prefab\\editbox.prefab" "relativePath": "prefab\\editbox.prefab"
}, },
"27756ebb-3d33-44b0-9b96-e858fadd4dd4": { "27756ebb-3d33-44b0-9b96-e858fadd4dd4": {
"asset": 1714966328783, "asset": 1714966328783,
"meta": 1718622357203, "meta": 1718958548190,
"relativePath": "prefab\\label.prefab" "relativePath": "prefab\\label.prefab"
}, },
"785a442c-3ceb-45be-a46e-7317f625f3b9": { "785a442c-3ceb-45be-a46e-7317f625f3b9": {
"asset": 1714966328783, "asset": 1714966328783,
"meta": 1718622357205, "meta": 1718958548192,
"relativePath": "prefab\\layout.prefab" "relativePath": "prefab\\layout.prefab"
}, },
"cd33edea-55f5-46c2-958d-357a01384a36": { "cd33edea-55f5-46c2-958d-357a01384a36": {
"asset": 1714966328800, "asset": 1714966328800,
"meta": 1718622357207, "meta": 1718958548195,
"relativePath": "prefab\\particlesystem.prefab" "relativePath": "prefab\\particlesystem.prefab"
}, },
"ca8401fe-ad6e-41a8-bd46-8e3e4e9945be": { "ca8401fe-ad6e-41a8-bd46-8e3e4e9945be": {
"asset": 1714966328800, "asset": 1714966328800,
"meta": 1718622357209, "meta": 1718958548194,
"relativePath": "prefab\\pageview.prefab" "relativePath": "prefab\\pageview.prefab"
}, },
"5965ffac-69da-4b55-bcde-9225d0613c28": { "5965ffac-69da-4b55-bcde-9225d0613c28": {
"asset": 1714966328800, "asset": 1714966328800,
"meta": 1718622357211, "meta": 1718958548200,
"relativePath": "prefab\\progressBar.prefab" "relativePath": "prefab\\progressBar.prefab"
}, },
"4a37dd57-78cd-4cec-aad4-f11a73d12b63": { "4a37dd57-78cd-4cec-aad4-f11a73d12b63": {
"asset": 1714966328800, "asset": 1714966328800,
"meta": 1718622357215, "meta": 1718958548199,
"relativePath": "prefab\\richtext.prefab" "relativePath": "prefab\\richtext.prefab"
}, },
"32044bd2-481f-4cf1-a656-e2b2fb1594eb": { "32044bd2-481f-4cf1-a656-e2b2fb1594eb": {
"asset": 1714966328800, "asset": 1714966328800,
"meta": 1718622357213, "meta": 1718958548198,
"relativePath": "prefab\\scrollview.prefab" "relativePath": "prefab\\scrollview.prefab"
}, },
"0004d1cf-a0ad-47d8-ab17-34d3db9d35a3": { "0004d1cf-a0ad-47d8-ab17-34d3db9d35a3": {
"asset": 1714966328800, "asset": 1714966328800,
"meta": 1718622357217, "meta": 1718958548204,
"relativePath": "prefab\\slider.prefab" "relativePath": "prefab\\slider.prefab"
}, },
"96083d03-c332-4a3f-9386-d03e2d19e8ee": { "96083d03-c332-4a3f-9386-d03e2d19e8ee": {
"asset": 1714966328815, "asset": 1714966328815,
"meta": 1718622357226, "meta": 1718958548224,
"relativePath": "prefab\\sprite.prefab" "relativePath": "prefab\\sprite.prefab"
}, },
"2be36297-9abb-4fee-8049-9ed5e271da8a": { "2be36297-9abb-4fee-8049-9ed5e271da8a": {
"asset": 1714966328721, "asset": 1714966328721,
"meta": 1718622357352, "meta": 1718958548229,
"relativePath": "misc\\default_video.mp4" "relativePath": "misc\\default_video.mp4"
}, },
"d8afc78c-4eac-4a9f-83dd-67bc70344d33": { "d8afc78c-4eac-4a9f-83dd-67bc70344d33": {
"asset": 1714966328862, "asset": 1714966328862,
"meta": 1718622356843, "meta": 1718958547854,
"relativePath": "resources" "relativePath": "resources"
}, },
"294c1663-4adf-4a1e-a795-53808011a38a": { "294c1663-4adf-4a1e-a795-53808011a38a": {
"asset": 1714966328862, "asset": 1714966328862,
"meta": 1718622357346, "meta": 1718958548225,
"relativePath": "resources\\effects" "relativePath": "resources\\effects"
}, },
"bbee2217-c261-49bd-a8ce-708d6bcc3500": { "bbee2217-c261-49bd-a8ce-708d6bcc3500": {
"asset": 1714966328893, "asset": 1714966328893,
"meta": 1718622357348, "meta": 1718958548226,
"relativePath": "resources\\materials" "relativePath": "resources\\materials"
}, },
"73a0903d-d80e-4e3c-aa67-f999543c08f5": { "73a0903d-d80e-4e3c-aa67-f999543c08f5": {
"asset": 1714966328706, "asset": 1714966328706,
"meta": 1718622357347, "meta": 1718958548231,
"relativePath": "image\\default_toggle_checkmark.png" "relativePath": "image\\default_toggle_checkmark.png"
}, },
"7de03a80-4457-438d-95a7-3e7cdffd6086": { "7de03a80-4457-438d-95a7-3e7cdffd6086": {
"asset": 1714966328815, "asset": 1714966328815,
"meta": 1718622357351, "meta": 1718958548236,
"relativePath": "prefab\\tiledmap.prefab" "relativePath": "prefab\\tiledmap.prefab"
}, },
"30682f87-9f0d-4f17-8a44-72863791461b": { "30682f87-9f0d-4f17-8a44-72863791461b": {
"asset": 1714966328831, "asset": 1714966328831,
"meta": 1718622357374, "meta": 1718958548254,
"relativePath": "resources\\effects\\builtin-2d-graphics.effect" "relativePath": "resources\\effects\\builtin-2d-graphics.effect"
}, },
"bf0a434c-84dd-4a8e-a08a-7a36f180cc75": { "bf0a434c-84dd-4a8e-a08a-7a36f180cc75": {
"asset": 1714966328815, "asset": 1714966328815,
"meta": 1718622357360, "meta": 1718958548241,
"relativePath": "prefab\\toggleContainer.prefab" "relativePath": "prefab\\toggleContainer.prefab"
}, },
"144c3297-af63-49e8-b8ef-1cfa29b3be28": { "144c3297-af63-49e8-b8ef-1cfa29b3be28": {
"asset": 1714966328831, "asset": 1714966328831,
"meta": 1718622357387, "meta": 1718958548261,
"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": 1718622357362, "meta": 1718958548237,
"relativePath": "image\\default_toggle_normal.png" "relativePath": "image\\default_toggle_normal.png"
}, },
"0e42ba95-1fa1-46aa-b2cf-143cd1bcee2c": { "0e42ba95-1fa1-46aa-b2cf-143cd1bcee2c": {
"asset": 1714966328815, "asset": 1714966328815,
"meta": 1718622357354, "meta": 1718958548239,
"relativePath": "prefab\\tiledtile.prefab" "relativePath": "prefab\\tiledtile.prefab"
}, },
"f18742d7-56d2-4eb5-ae49-2d9d710b37c8": { "f18742d7-56d2-4eb5-ae49-2d9d710b37c8": {
"asset": 1714966328831, "asset": 1714966328831,
"meta": 1718622357404, "meta": 1718958548270,
"relativePath": "resources\\effects\\builtin-2d-label.effect" "relativePath": "resources\\effects\\builtin-2d-label.effect"
}, },
"b181c1e4-0a72-4a91-bfb0-ae6f36ca60bd": { "b181c1e4-0a72-4a91-bfb0-ae6f36ca60bd": {
"asset": 1714966328706, "asset": 1714966328706,
"meta": 1718622357345, "meta": 1718958548228,
"relativePath": "image\\default_toggle_pressed.png" "relativePath": "image\\default_toggle_pressed.png"
}, },
"1f55e3be-b89b-4b79-88de-47fd31018044": { "1f55e3be-b89b-4b79-88de-47fd31018044": {
"asset": 1714966328815, "asset": 1714966328815,
"meta": 1718622357349, "meta": 1718958548233,
"relativePath": "prefab\\sprite_splash.prefab" "relativePath": "prefab\\sprite_splash.prefab"
}, },
"0e93aeaa-0b53-4e40-b8e0-6268b4e07bd7": { "0e93aeaa-0b53-4e40-b8e0-6268b4e07bd7": {
"asset": 1714966328831, "asset": 1714966328831,
"meta": 1718622357412, "meta": 1718958548277,
"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": 1718622357368, "meta": 1718958548222,
"relativePath": "image\\default_toggle_disabled.png" "relativePath": "image\\default_toggle_disabled.png"
}, },
"0d784963-d024-4ea6-a7db-03be0ad63010": { "0d784963-d024-4ea6-a7db-03be0ad63010": {
"asset": 1714966328815, "asset": 1714966328815,
"meta": 1718622357356, "meta": 1718958548242,
"relativePath": "prefab\\toggle.prefab" "relativePath": "prefab\\toggle.prefab"
}, },
"2874f8dd-416c-4440-81b7-555975426e93": { "2874f8dd-416c-4440-81b7-555975426e93": {
"asset": 1714966328846, "asset": 1714966328846,
"meta": 1718622357428, "meta": 1718958548294,
"relativePath": "resources\\effects\\builtin-2d-sprite.effect" "relativePath": "resources\\effects\\builtin-2d-sprite.effect"
}, },
"d1b8be49-b0a0-435c-83b7-552bed4bbe35": { "d1b8be49-b0a0-435c-83b7-552bed4bbe35": {
"asset": 1714966328815, "asset": 1714966328815,
"meta": 1718622357365, "meta": 1718958548244,
"relativePath": "prefab\\toggleGroup.prefab" "relativePath": "prefab\\toggleGroup.prefab"
}, },
"829a282c-b049-4019-bd38-5ace8d8a6417": { "829a282c-b049-4019-bd38-5ace8d8a6417": {
"asset": 1714966328846, "asset": 1714966328846,
"meta": 1718622357474, "meta": 1718958548342,
"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": 1718622357494, "meta": 1718958548360,
"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": 1718622357504, "meta": 1718958548365,
"relativePath": "resources\\effects\\builtin-clear-stencil.effect" "relativePath": "resources\\effects\\builtin-clear-stencil.effect"
}, },
"6d91e591-4ce0-465c-809f-610ec95019c6": { "6d91e591-4ce0-465c-809f-610ec95019c6": {
"asset": 1714966328862, "asset": 1714966328862,
"meta": 1718622357515, "meta": 1718958548376,
"relativePath": "resources\\effects\\builtin-unlit.effect" "relativePath": "resources\\effects\\builtin-unlit.effect"
}, },
"232d2782-c4bd-4bb4-9e01-909f03d6d3b9": { "232d2782-c4bd-4bb4-9e01-909f03d6d3b9": {
"asset": 1714966328815, "asset": 1714966328815,
"meta": 1718622357379, "meta": 1718958548254,
"relativePath": "prefab\\videoplayer.prefab" "relativePath": "prefab\\videoplayer.prefab"
}, },
"8c5001fd-07ee-4a4b-a8a0-63e15195e94d": { "8c5001fd-07ee-4a4b-a8a0-63e15195e94d": {
"asset": 1714966328831, "asset": 1714966328831,
"meta": 1718622357478, "meta": 1718958548344,
"relativePath": "prefab\\webview.prefab" "relativePath": "prefab\\webview.prefab"
}, },
"61906da3-7003-4bda-9abc-5769c76faee4": { "61906da3-7003-4bda-9abc-5769c76faee4": {
"asset": 1714966328783, "asset": 1714966328783,
"meta": 1718622357535, "meta": 1718958548386,
"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": 1718622357526, "meta": 1718958548389,
"relativePath": "prefab\\light\\directional.prefab" "relativePath": "prefab\\light\\directional.prefab"
}, },
"0cf30284-9073-46bc-9eba-e62b69dbbff3": { "0cf30284-9073-46bc-9eba-e62b69dbbff3": {
"asset": 1714966328800, "asset": 1714966328800,
"meta": 1718622357541, "meta": 1718958548390,
"relativePath": "prefab\\light\\point.prefab" "relativePath": "prefab\\light\\point.prefab"
}, },
"f5331fd2-bf42-4ee3-a3fd-3e1657600eff": { "f5331fd2-bf42-4ee3-a3fd-3e1657600eff": {
"asset": 1714966328800, "asset": 1714966328800,
"meta": 1718622357539, "meta": 1718958548394,
"relativePath": "prefab\\light\\spot.prefab" "relativePath": "prefab\\light\\spot.prefab"
}, },
"58403fe7-d7a2-426b-9b19-84d3236731a8": { "58403fe7-d7a2-426b-9b19-84d3236731a8": {
@ -851,77 +841,77 @@
}, },
"6f801092-0c37-4f30-89ef-c8d960825b36": { "6f801092-0c37-4f30-89ef-c8d960825b36": {
"asset": 1714966328862, "asset": 1714966328862,
"meta": 1718622357626, "meta": 1718958548473,
"relativePath": "resources\\materials\\builtin-2d-base.mtl" "relativePath": "resources\\materials\\builtin-2d-base.mtl"
}, },
"3a7bb79f-32fd-422e-ada2-96f518fed422": { "3a7bb79f-32fd-422e-ada2-96f518fed422": {
"asset": 1714966328862, "asset": 1714966328862,
"meta": 1718622357630, "meta": 1718958548475,
"relativePath": "resources\\materials\\builtin-2d-gray-sprite.mtl" "relativePath": "resources\\materials\\builtin-2d-gray-sprite.mtl"
}, },
"e02d87d4-e599-4d16-8001-e14891ac6506": { "e02d87d4-e599-4d16-8001-e14891ac6506": {
"asset": 1714966328878, "asset": 1714966328878,
"meta": 1718622357630, "meta": 1718958548477,
"relativePath": "resources\\materials\\builtin-2d-label.mtl" "relativePath": "resources\\materials\\builtin-2d-label.mtl"
}, },
"eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432": { "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432": {
"asset": 1714966328878, "asset": 1714966328878,
"meta": 1718622357634, "meta": 1718958548478,
"relativePath": "resources\\materials\\builtin-2d-sprite.mtl" "relativePath": "resources\\materials\\builtin-2d-sprite.mtl"
}, },
"a153945d-2511-4c14-be7b-05d242f47d57": { "a153945d-2511-4c14-be7b-05d242f47d57": {
"asset": 1714966328862, "asset": 1714966328862,
"meta": 1718622357626, "meta": 1718958548473,
"relativePath": "resources\\materials\\builtin-2d-graphics.mtl" "relativePath": "resources\\materials\\builtin-2d-graphics.mtl"
}, },
"8a96b965-2dc0-4e03-aa90-3b79cb93b5b4": { "8a96b965-2dc0-4e03-aa90-3b79cb93b5b4": {
"asset": 1714966328752, "asset": 1714966328752,
"meta": 1718622357357, "meta": 1718958548247,
"relativePath": "obsolete\\atom.png" "relativePath": "obsolete\\atom.png"
}, },
"cf7e0bb8-a81c-44a9-ad79-d28d43991032": { "cf7e0bb8-a81c-44a9-ad79-d28d43991032": {
"asset": 1714966328878, "asset": 1714966328878,
"meta": 1718622357630, "meta": 1718958548474,
"relativePath": "resources\\materials\\builtin-clear-stencil.mtl" "relativePath": "resources\\materials\\builtin-clear-stencil.mtl"
}, },
"2a296057-247c-4a1c-bbeb-0548b6c98650": { "2a296057-247c-4a1c-bbeb-0548b6c98650": {
"asset": 1714966328893, "asset": 1714966328893,
"meta": 1718622357634, "meta": 1718958548479,
"relativePath": "resources\\materials\\builtin-unlit.mtl" "relativePath": "resources\\materials\\builtin-unlit.mtl"
}, },
"7afd064b-113f-480e-b793-8817d19f63c3": { "7afd064b-113f-480e-b793-8817d19f63c3": {
"asset": 1714966328878, "asset": 1714966328878,
"meta": 1718622357630, "meta": 1718958548480,
"relativePath": "resources\\materials\\builtin-2d-spine.mtl" "relativePath": "resources\\materials\\builtin-2d-spine.mtl"
}, },
"466d4f9b-e5f4-4ea8-85d5-3c6e9a65658a": { "466d4f9b-e5f4-4ea8-85d5-3c6e9a65658a": {
"asset": 1714966328878, "asset": 1714966328878,
"meta": 1718622357634, "meta": 1718958548475,
"relativePath": "resources\\materials\\builtin-3d-trail.mtl" "relativePath": "resources\\materials\\builtin-3d-trail.mtl"
}, },
"432fa09c-cf03-4cff-a186-982604408a07": { "432fa09c-cf03-4cff-a186-982604408a07": {
"asset": 1714966328878, "asset": 1714966328878,
"meta": 1718622357630, "meta": 1718958548480,
"relativePath": "resources\\materials\\builtin-3d-particle.mtl" "relativePath": "resources\\materials\\builtin-3d-particle.mtl"
}, },
"d0a82d39-bede-46c4-b698-c81ff0dedfff": { "d0a82d39-bede-46c4-b698-c81ff0dedfff": {
"asset": 1714966328752, "asset": 1714966328752,
"meta": 1718622357366, "meta": 1718958548246,
"relativePath": "particle\\atom.png" "relativePath": "particle\\atom.png"
}, },
"b8223619-7e38-47c4-841f-9160c232495a": { "b8223619-7e38-47c4-841f-9160c232495a": {
"asset": 1714966328752, "asset": 1714966328752,
"meta": 1718622357662, "meta": 1718958548509,
"relativePath": "obsolete\\atom.plist" "relativePath": "obsolete\\atom.plist"
}, },
"b2687ac4-099e-403c-a192-ff477686f4f5": { "b2687ac4-099e-403c-a192-ff477686f4f5": {
"asset": 1714966328752, "asset": 1714966328752,
"meta": 1718622357662, "meta": 1718958548510,
"relativePath": "particle\\atom.plist" "relativePath": "particle\\atom.plist"
}, },
"954fec8b-cd16-4bb9-a3b7-7719660e7558": { "954fec8b-cd16-4bb9-a3b7-7719660e7558": {
"asset": 1714966328737, "asset": 1714966328737,
"meta": 1718622359203, "meta": 1718958550052,
"relativePath": "model\\primitives.fbx" "relativePath": "model\\primitives.fbx"
}, },
"b0432040-dbde-438c-839c-ba2b5d18a3b5": { "b0432040-dbde-438c-839c-ba2b5d18a3b5": {
@ -934,19 +924,29 @@
"meta": 1718621731780, "meta": 1718621731780,
"relativePath": "Script\\GuideManager.ts" "relativePath": "Script\\GuideManager.ts"
}, },
"454ad829-851a-40ea-8ab9-941e828357ca": {
"asset": 1718621727785,
"meta": 1718621731790,
"relativePath": "Script\\Load.ts"
},
"61d4c718-db3b-4b31-8221-f16bea3cf030": { "61d4c718-db3b-4b31-8221-f16bea3cf030": {
"asset": 1718621682254, "asset": 1718678046798,
"meta": 1718621731802, "meta": 1718678051992,
"relativePath": "Script\\module\\GameStart\\GameAppStart.ts" "relativePath": "Script\\module\\GameStart\\GameAppStart.ts"
}, },
"43bfc27a-ff6e-45b3-87c7-504d0f781397": {
"asset": 1718956940757,
"meta": 1718956941605,
"relativePath": "Script\\module\\Tool\\GameTool.ts"
},
"454ad829-851a-40ea-8ab9-941e828357ca": {
"asset": 1718957407957,
"meta": 1718957428778,
"relativePath": "Script\\Load.ts"
},
"2d69a479-18ec-4787-b35f-e9a9b3247435": {
"asset": 1718957630005,
"meta": 1718957766138,
"relativePath": "resources\\Json\\GM_INFO.json"
},
"c5692be7-8703-45e4-9f67-23b54d290356": { "c5692be7-8703-45e4-9f67-23b54d290356": {
"asset": 1718622344918, "asset": 1718958794632,
"meta": 1718622359333, "meta": 1718958795870,
"relativePath": "Script\\module\\Config\\GameConfig.ts" "relativePath": "Script\\module\\Config\\GameConfig.ts"
} }
} }

View File

@ -5,21 +5,21 @@
"main": true, "main": true,
"url": "app://editor/index.html", "url": "app://editor/index.html",
"windowType": "dockable", "windowType": "dockable",
"x": -8, "x": 0,
"y": -8, "y": 0,
"width": 1296, "width": 1280,
"height": 688, "height": 672,
"layout": { "layout": {
"type": "dock-h", "type": "dock-h",
"children": [ "children": [
{ {
"width": 207.1666717529297, "width": 205,
"height": 571, "height": 556.3333740234375,
"type": "dock-v", "type": "dock-v",
"children": [ "children": [
{ {
"width": 207.1666717529297, "width": 205,
"height": 307.9895935058594, "height": 300.1770935058594,
"type": "panel", "type": "panel",
"active": 0, "active": 0,
"children": [ "children": [
@ -27,8 +27,8 @@
] ]
}, },
{ {
"width": 207.1666717529297, "width": 205,
"height": 260, "height": 253.15625,
"type": "panel", "type": "panel",
"active": 0, "active": 0,
"children": [ "children": [
@ -38,8 +38,8 @@
] ]
}, },
{ {
"width": 759.59375, "width": 750.9896240234375,
"height": 571, "height": 556.3333740234375,
"type": "panel", "type": "panel",
"active": 0, "active": 0,
"children": [ "children": [
@ -47,8 +47,8 @@
] ]
}, },
{ {
"width": 307.2395935058594, "width": 304,
"height": 571, "height": 556.3333740234375,
"type": "panel", "type": "panel",
"active": 0, "active": 0,
"children": [ "children": [

View File

@ -1,5 +1,5 @@
{ {
"last-module-event-record-time": 1718267224813, "last-module-event-record-time": 1718957481996,
"group-list": [ "group-list": [
"default" "default"
], ],

View File

@ -1 +1 @@
{"version":"1.0.8","stats":{"C:/Work/Project/Sun_moves/temp/quick-scripts/src/__qc_index__.js":"2024-06-17T11:05:59.565Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/GuideManager.js":"2024-06-17T11:05:59.509Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js":"2024-06-17T11:05:59.526Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/GameOver.js":"2024-06-17T11:05:59.527Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/Sun.js":"2024-06-17T11:05:59.516Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/RankManager.js":"2024-06-17T11:05:59.535Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/DynamicAtlasManager.js":"2024-06-17T11:05:59.520Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Notification/Notification.js":"2024-06-17T11:05:59.517Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/Load.js":"2024-06-17T11:05:59.512Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/GameManager.js":"2024-06-17T11:05:59.527Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Config/GameConfig.js":"2024-06-17T11:05:59.530Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Storage/Storage.js":"2024-06-17T11:05:59.508Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/GameStart/GameAppStart.js":"2024-06-17T11:05:59.522Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Music/AudioManager.js":"2024-06-17T11:05:59.519Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/RankList/List.js":"2024-06-17T11:05:59.532Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Crypto/crypto-js.min.js":"2024-06-17T11:05:59.534Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Tool/GameTool.js":"2024-06-17T11:05:59.511Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/RankList/ItemRender.js":"2024-06-17T11:05:59.531Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Crypto/HttpUtil.js":"2024-06-17T11:05:59.524Z"}} {"version":"1.0.8","stats":{"C:/Work/Project/Sun_moves/temp/quick-scripts/src/__qc_index__.js":"2024-06-21T08:29:10.345Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/DynamicAtlasManager.js":"2024-06-21T08:29:10.305Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js":"2024-06-21T08:29:10.309Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/GuideManager.js":"2024-06-21T08:29:10.296Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/Sun.js":"2024-06-21T08:29:10.301Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/Load.js":"2024-06-21T08:29:10.297Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/GameOver.js":"2024-06-21T08:29:10.310Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/RankManager.js":"2024-06-21T08:29:10.317Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/GameManager.js":"2024-06-21T08:29:10.311Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Crypto/crypto-js.min.js":"2024-06-21T08:29:10.316Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/RankList/ItemRender.js":"2024-06-21T08:29:10.313Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Music/AudioManager.js":"2024-06-21T08:29:10.304Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Storage/Storage.js":"2024-06-21T08:29:10.295Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/GameStart/GameAppStart.js":"2024-06-21T08:29:10.306Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Notification/Notification.js":"2024-06-21T08:29:10.303Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Tool/GameTool.js":"2024-06-21T08:29:10.297Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Config/GameConfig.js":"2024-06-21T08:29:10.312Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/Crypto/HttpUtil.js":"2024-06-21T08:29:10.307Z","C:/Work/Project/Sun_moves/temp/quick-scripts/src/assets/Script/module/RankList/List.js":"2024-06-21T08:29:10.314Z"}}

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
(function () { (function () {
var scripts = [{"deps":{"./assets/Script/GuideManager":1,"./assets/migration/use_v2.1-2.2.1_cc.Toggle_event":2,"./assets/Script/GameOver":3,"./assets/Script/Sun":4,"./assets/Script/RankManager":5,"./assets/Script/DynamicAtlasManager":6,"./assets/Script/module/Notification/Notification":7,"./assets/Script/Load":8,"./assets/Script/GameManager":9,"./assets/Script/module/Config/GameConfig":10,"./assets/Script/module/Storage/Storage":11,"./assets/Script/module/GameStart/GameAppStart":12,"./assets/Script/module/Music/AudioManager":13,"./assets/Script/module/RankList/List":14,"./assets/Script/module/Crypto/crypto-js.min":15,"./assets/Script/module/Tool/GameTool":16,"./assets/Script/module/RankList/ItemRender":17,"./assets/Script/module/Crypto/HttpUtil":18},"path":"preview-scripts/__qc_index__.js"},{"deps":{},"path":"preview-scripts/assets/Script/GuideManager.js"},{"deps":{},"path":"preview-scripts/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js"},{"deps":{},"path":"preview-scripts/assets/Script/GameOver.js"},{"deps":{},"path":"preview-scripts/assets/Script/Sun.js"},{"deps":{"./module/RankList/List":14},"path":"preview-scripts/assets/Script/RankManager.js"},{"deps":{},"path":"preview-scripts/assets/Script/DynamicAtlasManager.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Notification/Notification.js"},{"deps":{},"path":"preview-scripts/assets/Script/Load.js"},{"deps":{},"path":"preview-scripts/assets/Script/GameManager.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Config/GameConfig.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Storage/Storage.js"},{"deps":{"../Config/GameConfig":10,"../Crypto/HttpUtil":18,"../Music/AudioManager":13,"../Notification/Notification":7,"../Storage/Storage":11,"../Tool/GameTool":16},"path":"preview-scripts/assets/Script/module/GameStart/GameAppStart.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Music/AudioManager.js"},{"deps":{"./ItemRender":17},"path":"preview-scripts/assets/Script/module/RankList/List.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Crypto/crypto-js.min.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Tool/GameTool.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/RankList/ItemRender.js"},{"deps":{"./crypto-js.min.js":15},"path":"preview-scripts/assets/Script/module/Crypto/HttpUtil.js"}]; var scripts = [{"deps":{"./assets/Script/GameOver":6,"./assets/Script/GuideManager":3,"./assets/Script/Load":5,"./assets/Script/RankManager":7,"./assets/Script/Sun":4,"./assets/Script/DynamicAtlasManager":1,"./assets/migration/use_v2.1-2.2.1_cc.Toggle_event":2,"./assets/Script/GameManager":8,"./assets/Script/module/Crypto/crypto-js.min":9,"./assets/Script/module/Crypto/HttpUtil":17,"./assets/Script/module/GameStart/GameAppStart":13,"./assets/Script/module/Music/AudioManager":11,"./assets/Script/module/Notification/Notification":14,"./assets/Script/module/RankList/List":18,"./assets/Script/module/RankList/ItemRender":10,"./assets/Script/module/Storage/Storage":12,"./assets/Script/module/Tool/GameTool":15,"./assets/Script/module/Config/GameConfig":16},"path":"preview-scripts/__qc_index__.js"},{"deps":{},"path":"preview-scripts/assets/Script/DynamicAtlasManager.js"},{"deps":{},"path":"preview-scripts/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js"},{"deps":{},"path":"preview-scripts/assets/Script/GuideManager.js"},{"deps":{},"path":"preview-scripts/assets/Script/Sun.js"},{"deps":{},"path":"preview-scripts/assets/Script/Load.js"},{"deps":{},"path":"preview-scripts/assets/Script/GameOver.js"},{"deps":{"./module/RankList/List":18},"path":"preview-scripts/assets/Script/RankManager.js"},{"deps":{},"path":"preview-scripts/assets/Script/GameManager.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Crypto/crypto-js.min.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/RankList/ItemRender.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Music/AudioManager.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Storage/Storage.js"},{"deps":{"../Config/GameConfig":16,"../Crypto/HttpUtil":17,"../Music/AudioManager":11,"../Notification/Notification":14,"../Storage/Storage":12,"../Tool/GameTool":15},"path":"preview-scripts/assets/Script/module/GameStart/GameAppStart.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Notification/Notification.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Tool/GameTool.js"},{"deps":{},"path":"preview-scripts/assets/Script/module/Config/GameConfig.js"},{"deps":{"./crypto-js.min.js":9},"path":"preview-scripts/assets/Script/module/Crypto/HttpUtil.js"},{"deps":{"./ItemRender":10},"path":"preview-scripts/assets/Script/module/RankList/List.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

View File

@ -27,35 +27,35 @@ var GameConfig = /** @class */ (function () {
configurable: true configurable: true
}); });
GameConfig.init = function () { GameConfig.init = function () {
var _this = this; this.GM_INFO_init();
this.CLICK_init();
this.LEVEL_INFO_init();
var self = this;
cc.resources.load('Json/GM_INFO', function (err, res) { cc.resources.load('Json/GM_INFO', function (err, res) {
if (err) { if (err) {
_this.GM_INFO_init(); self.Authentication();
_this.Authentication();
return; return;
} }
var jsonData = res.json; var jsonData = res.json;
_this.GM_INFO = jsonData["data"]; self.GM_INFO = jsonData["data"];
_this.Authentication(); self.Authentication();
}); });
cc.resources.load('Json/CLICK_DATA', function (err, res) { cc.resources.load('Json/CLICK_DATA', function (err, res) {
if (err) { if (err) {
_this.CLICK_init();
return; return;
} }
var jsonData = res.json; var jsonData = res.json;
_this.CLICK_DATA = jsonData["data"]; self.CLICK_DATA = jsonData["data"];
}); });
cc.resources.load('Json/LEVEL_INFO', function (err, res) { cc.resources.load('Json/LEVEL_INFO', function (err, res) {
if (err) { if (err) {
_this.LEVEL_INFO_init();
return; return;
} }
var jsonData = res.json; var jsonData = res.json;
_this.LEVEL_INFO = jsonData["data"]; self.LEVEL_INFO = jsonData["data"];
}); });
//GAME_DATA 废弃了,暂时不删除以防后面修改回 一整局传一次 //GAME_DATA 废弃了,暂时不删除以防后面修改回 一整局传一次
this.GAME_DATA = []; self.GAME_DATA = [];
}; };
//数据备用 //数据备用
GameConfig.GM_INFO_init = function () { GameConfig.GM_INFO_init = function () {

File diff suppressed because one or more lines are too long

View File

@ -37,7 +37,7 @@ var GameTool = {
"matchId": matchId, "matchId": matchId,
"data": data "data": data
}; };
// console.log("上传数据:") console.log("上传数据:", postData);
cc.fx.HttpUtil.uploadUserLogData(postData, function () { }); cc.fx.HttpUtil.uploadUserLogData(postData, function () { });
}, },
//上传排行榜 type为1 //上传排行榜 type为1

File diff suppressed because one or more lines are too long